-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
29 lines (27 loc) · 929 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
<!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 the 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>