-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
53 lines (40 loc) · 1.56 KB
/
index.html
File metadata and controls
53 lines (40 loc) · 1.56 KB
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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>Home Page</title>
<link rel="stylesheet" href="index_style.css">
<link rel="icon" href="icon.jpg" type="image/jpg">
</head>
<body>
<nav>
<div class="navbar">
<ul>
<li><a href="game.html">Games</a></li>
<li><a href="about.html">About Us</a></li>
<li><a href="feedback.html">Feedback</a></li>
<li><a href="profile.html">Profile</a></li>
<li><a href="login.html">Login</a></li>
</ul>
</div>
</nav>
<h1>Neuro Play</h1>
<div class="container">
<div class="intro">
<h2>Hello ! I'm Glad to welcome you</h2>
<p>Check the lines below start boosting !</p>
<ul type="none">
<li> You can go to the emotion detection & Answer the simple questions asked !</li><br>
<li> By Visting Get Games you have two games to relax your mind </li><br>
<li> Note : Enjoy the game and start relaxing yourself !</li>
</ul>
</div>
<a href="game.html" class="button-link">
<button class="get-game-btn">Get Game</button>
</a>
<a href="quiz.html" class="button-link">
<button class="detect-emotion-btn">Detect Emotion</button>
</a>
</div>
</body>
</html>