-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
51 lines (49 loc) · 1.68 KB
/
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
44
45
46
47
48
49
50
51
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Master Mind Game</title>
<!-- Font Honk -->
<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=Honk&display=swap"
rel="stylesheet"
/>
<!-- CSS -->
<link rel="stylesheet" href="./css/styles.css" />
<!-- Bootstrap -->
<link
href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-T3c6CoIi6uLrA9TneNEoa7RxnatzjcDSCmG1MXxSR1GAsXEV/Dwwykc2MPK8M2HN"
crossorigin="anonymous"
/>
</head>
<body>
<div class="container-fluid backHome">
<!--GIF-->
<div>
<p class="logos">MASTER</p>
<p class="logos">MIND</p>
</div>
</div>
<!-- Bottons -->
<div class="row-h-25 m-0 p-0 d-flex align-items-end justify-content-center">
<div class="col-12 col-lg-4 h-25 d-flex justify-content-center">
<a href="./pages/level.html" class="col-9-lg-9 gameButtons">START </a>
</div>
</div>
<div class="col-12 col-lg-3 d-flex justify-content-center">
<a href="./pages/about.html" class="col-9-lg-10 gameButtons">ABOUT</a>
</div>
<!-- Bootstrap -->
<script
src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/js/bootstrap.min.js"
integrity="sha384-BBtl+eGJRgqQAUMxJ7pMwbEyER4l1g+O15P+16Ep7Q9Q+zqX6gSbd85u4mG4QzX+"
crossorigin="anonymous"
></script>
<script src="./js/main.js"></script>
</body>
</html>