-
Notifications
You must be signed in to change notification settings - Fork 11
/
index.html
31 lines (30 loc) · 972 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
26
27
28
29
30
31
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Will you go out with me? 🥹</title>
<link rel="stylesheet" href="style.css" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Leckerli+One&display=swap"
rel="stylesheet"
/>
</head>
<body>
<div class="wrapper">
<h2 class="question">Will you go out with me?</h2>
<img
class="gif"
alt="gif"
src="https://media.giphy.com/media/FTGah7Mx3ss04PcasF/giphy.gif"
/>
<div class="btn-group">
<button class="yes-btn">Yes</button>
<button class="no-btn">No</button>
</div>
</div>
<script src="script.js"></script>
</body>
</html>