-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
92 lines (89 loc) · 2.75 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Jaldi:wght@400;700&display=swap"
/>
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Itim:wght@400&display=swap"
/>
<link rel="stylesheet" href="Website Code/style.css" />
<title>NeuroNeko</title>
</head>
<body>
<main>
<header id="mainHeader">
<div id="mindContainer">
<img src="Website Code/mind.png" id="mind" />
</div>
<h1>NeuroNeko</h1>
<div id="pawcontainer">
<img src="Website Code/paw.png" id="paw" />
</div>
</header>
<section id="welcomeContainer">
<h2 id="welcomeText">Welcome to NeuroNeko!</h2>
</section>
<section>
<p class="mainText">
Here, you can purrfect your cognitive skills with different games!
</p>
<p class="mainText">
You can take a cognitive test to assess your memory, processing speed,
<br />
and spatial awareness for more personalized results
</p>
</section>
<section>
<div class="sectionHeaderContainer">
<h2 id="cognativeText">Cognitive Test</h2>
</div>
<div class="cognativeTestContainer"></div>
</section>
<p class="mainText">
You can also start paying the gamesto improveyour skills right away.
</p>
<section>
<section class="sectionHeaderContainer">
<h2>Choose a game!</h2>
</section>
<section id="gameListSection">
<div class="gameContainer">
<img class="game" src="Website Code/gray-cat-logo.png"></img>
<a
href="Game Code/MemoryGame/colorful-cats.html"
class="gameButton"
style="background-color: #c2d9ff"
>
Meowmory
</a>
</div>
<div class="gameContainer">
<img class="game" src="Website Code/maze-image.png"></img>
<a
href="Game Code/MazeGame/mazeGameWebsite.html"
class="gameButton"
style="background-color: #ffc2fa"
>
Find The Treat
</a>
</div>
<div class="gameContainer">
<img class="game" src="Website Code/catpaw2.png"></img>
<a
href="Game Code/Laser_Code/index.html"
class="gameButton"
style="background-color: #c2d9ff"
>
Catch The Lazer
</a>
</div>
</section>
</section>
</main>
</body>
</html>