-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
22 lines (20 loc) · 711 Bytes
/
Copy pathindex.html
File metadata and controls
22 lines (20 loc) · 711 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Valentine</title>
<link rel="shortcut icon" type="='x-icon" href="logo.jpeg">
<link rel="stylesheet" href="style.css">
</head>
<body>
<h1 id="movingText">Will you be my Valentine? 💖</h1>
<div class="buttons">
<button class="btn yes" id="yesBtn" onclick="acceptValentine()">Yes</button>
<button class="btn no" id="noBtn">No</button>
</div>
<audio id="noSound" src="no.mp3" preload="auto"></audio>
<audio id="yesSound" src="yes.mp3" preload="auto"></audio>
<script src="script.js"></script>
</body>
</html>