-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
25 lines (24 loc) · 908 Bytes
/
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
<!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="style.css">
<title>moyemoye</title>
</head>
<body>
<div class="container">
<div>
<h1 class="qs">Will you go out with me?</h1>
</div>
<div class="gif_container">
<img src="https://media1.giphy.com/media/v1.Y2lkPTc5MGI3NjExcDdtZ2JiZDR0a3lvMWF4OG8yc3p6Ymdvd3g2d245amdveDhyYmx6eCZlcD12MV9pbnRlcm5hbF9naWZfYnlfaWQmY3Q9cw/cLS1cfxvGOPVpf9g3y/giphy.gif" alt="Cute animated illustration">
</div>
<div class="options">
<button class="btn" id="yesButton" onclick="redirectToYay()">Yes</button>
<button class="btn" id="noButton" onmouseover="moveButton()" onclick="redirectToSobSob()">No</button>
</div>
</div>
<script src="script.js"></script>
</body>
</html>