generated from chingu-voyages/voyage-template
-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
75 lines (74 loc) · 2.25 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link
rel="apple-touch-icon"
sizes="180x180"
href="./docs/favicon_io/apple-touch-icon.png"
/>
<link
rel="icon"
type="image/png"
sizes="32x32"
href="./docs/favicon_io/favicon-32x32.png"
/>
<link
rel="icon"
type="image/png"
sizes="16x16"
href="./docs/favicon_io/favicon-16x16.png"
/>
<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=Dokdo&family=Montserrat:wght@400;700&display=swap"
rel="stylesheet"
/>
<link rel="manifest" href="/site.webmanifest" />
<link rel="stylesheet" href="src/css/landingpage.css" />
<title>Array Game</title>
</head>
<body>
<h1>The Array Game</h1>
<main>
<div>
<img class="notebook" src="docs/images/Notebook_cover.png" />
<a href="./game_page.html"
><img class="goSticker" src="docs/images/takeoff.png"
/></a>
</div>
</main>
<footer>
<span> </> with </span>❤️<span> by </span>
<span>
<a href="https://github.com/goodman2814" target="_blank">Alex</a>,
<a href="https://github.com/nazgul7d" target="_blank">Nazgul</a>,
<a href="https://github.com/PaulaR-05" target="_blank"> Gabriela</a>,
<a href="https://github.com/Foughty" target="_blank">John</a>
</span>
<hr />
<span> © 2023 </span>
<span
>Inspired by <a href="https://www.chingu.io" target="_blank">Chingu</a>.
Built for Voyage 44. |
<a
href="https://github.com/chingu-voyages/v44-tier1-team-05"
target="_blank"
>View Source</a
>
|
<a
href="https://github.com/chingu-voyages/v44-tier1-team-05/"
target="_blank"
>Learn More</a
>
</span>
|
<a href="meet_team.html" id="developersPage">Meet Team 05</a>
</footer>
<script src="src/js/app.js"></script>
</body>
</html>