-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathindex.html
32 lines (29 loc) · 1.04 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="styles.css">
<title>Valentine</title>
</head>
<body>
<div class="container">
<div class="Mainprompt">
<img class="image" src="images/catflower.jpg"></img>
<h1 class="hh" id="name">Hey beautiful!</h1>
<p class="pp" id="question">Will you be my Valentine?</p>
<div class="buttons">
<button id="no-button" onclick="showMessage('No')">No</button>
<button onclick="showMessage('Yes')" id="yesButton">Yes</button>
</div>
<div class="hidden-message" id="no-message">
<p>Nice try, but you can't escape that easily!</p>
</div>
<div class="hidden-message" id="yes-message">
<p>Yeees! See you on the 14th, Princess.</p>
</div>
</div>
</div>
<script src="script.js"></script>
</body>
</html>