-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathindex.html
25 lines (25 loc) · 945 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" />
<title>Document</title>
<link rel="stylesheet" href="styles.css" />
<link
href="https://fonts.googleapis.com/css2?family=Bai+Jamjuree:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;1,200;1,300;1,400;1,500;1,600;1,700&family=Comic+Neue:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&family=Kavoon&family=Press+Start+2P&display=swap"
rel="stylesheet"
/>
</head>
<body>
<h1 id="title">Press to start</h1>
<div class="row">
<div type="button" id="red" class="btn red"></div>
<div type="button" id="green" class="btn green"></div>
</div>
<div class="row">
<div type="button" id="blue" class="btn blue"></div>
<div type="button" id="yellow" class="btn yellow"></div>
</div>
<script src="index.js"></script>
</body>
</html>