-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.html
30 lines (30 loc) · 921 Bytes
/
main.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Simon</title>
<link rel="stylesheet" href="./main.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=Press+Start+2P&display=swap"
rel="stylesheet"
/>
</head>
<body>
<h1>Score : 0</h1>
<div class="flexContainer">
<div class="mainContainer">
<div class="Green"></div>
<div class="Blue"></div>
<div class="Red"></div>
<div class="Yellow"></div>
</div>
</div>
<footer>
<h2>quit</h2>
</footer>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.7.0/jquery.min.js"></script>
<script src="./scripts/main.js" type="module"></script>
</body>
</html>