-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
24 lines (23 loc) · 997 Bytes
/
index.html
File metadata and controls
24 lines (23 loc) · 997 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Will You Be My Valentine Nashrah?</title>
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Sacramento&display=swap">
<link rel="stylesheet" href="style.css"> <!-- Link to external stylesheet -->
</head>
<body>
<div id="container">
<div id="image-container"></div> <!-- Container for displaying images -->
<div id="text-container">
<div id="question">Will you be my valentine Nashrah?</div> <!-- Question -->
<div id="options">
<button id="yes-button" onclick="selectOption('yes')">Yes</button> <!-- Yes button -->
<button id="no-button" onclick="selectOption('no')">No</button> <!-- No button -->
</div>
</div>
</div>
<script src="script.js"></script> <!-- Link to external JavaScript file -->
</body>
</html>