-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
43 lines (41 loc) · 895 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
32
33
34
35
36
37
38
39
40
41
42
43
<!DOCTYPE html>
<html>
<head>
<title>KeyPress Surprise</title>
<meta charset="UTF-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1.0"
/>
<link
rel="preconnect"
href="https://fonts.gstatic.com"
/>
<link
href="https://fonts.googleapis.com/css2?family=Cabin&display=swap"
rel="stylesheet"
/>
<link
rel="stylesheet"
href="css/normalize.css"
/>
<link
rel="stylesheet"
href="css/styles.css"
/>
<script src="js/script.js" defer></script>
</head>
<body class="happy">
<div class="container">
<h2>
Press a number to reveal a surprise!
</h2>
<div class="key-select">
<p class="box-1">1</p>
<p class="box-2">2</p>
<p class="box-3">3</p>
</div>
<button>Clear</button>
</div>
</body>
</html>