forked from cl0udstar/escape-room
-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
49 lines (43 loc) · 1.94 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="./styles/default-style.css">
<link rel="stylesheet" href="./styles/homepage-style.css">
<title>Escape Room | Home</title>
<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=Anta&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Lexend:[email protected]&display=swap" rel="stylesheet">
<link rel="icon" type="png" href="assets/backgrounds/DATA_Logo.png">
</head>
<body id="text">
<div class="top">
<div class="logo">
<a href="https://dataschools.education/"><img src="./assets/des-logo.png" alt="logo" width="200px" height="89px">
</div>
<div class="navbar" id="heading-font">
<a href="./puzzles/puzzle-selection.html">Missions</a>
<a href="https://dataschools.education/contact-us/">Contact Us</a>
<a href="about-us.html">About Us</a>
<a href="./accessibility/accessibility-page.html">Accessibility</a>
</div>
</div>
<div class="puzzle-box">
<div class="img-text-container">
<div class="majorx-img">
<img src="./assets/major-x.png" alt="logo" width="210px" height="330px">
</div>
<div class="home-text">
</div>
<div class="background-logo"></div>
</div>
<div class="puzzle-box-button">
<a class="start-btn" id="start" href="./puzzles/puzzle-selection.html">Start</a>
</div>
</div>
<script src="./scripts/cookies/accessibility-cookie.js"></script>
<script src="./scripts/home-text-script.js"></script>
</body>
</html>