-
Notifications
You must be signed in to change notification settings - Fork 0
/
games.html
103 lines (87 loc) · 3.63 KB
/
games.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
93
94
95
96
97
98
99
100
101
102
103
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="author" content="Elluru Sree Harshini and Lee Jia Ying Jess">
<meta name="description" content="Contact">
<meta name="viewport" content="width=device-width, inital-scale=1.0">
<title>Games</title>
<link rel="icon" href="images/icon.png">
<!--External Style Sheets-->
<link href="https://fonts.googleapis.com/css2?family=Oswald:wght@600&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/js/bootstrap.min.js"></script>
<link rel="stylesheet" href="css/style.css" type="text/css">
</head>
<body>
<!--Navigation Bar-->
<nav class="navbar navbar-light">
<div class="container-fluid">
<div class="navbar-header">
<a class="navbar-brand" href="index.html"><em>Sci</em>statics</a>
</div>
<ul class="nav navbar-nav">
<li class="dropdown"><a class="dropdown-toggle" data-toggle="dropdown" href="discover_page1.html">Discover<span class="caret"></span></a>
<ul class="dropdown-menu">
<li><a href="discover_page1.html">Topic 1-1</a></li>
<li><a href="discover_page2.html">Topic 1-2</a></li>
</ul>
</li>
<li><a href="games.html">Games</a></li>
<li><a href="leader_board.html">Leaderboard</a></li>
<li><a href="contact_us.html">Contact</a></li>
</ul>
<ul class="nav navbar-nav navbar-right">
<li><a href="login.html"><span class="glyphicon glyphicon-user" id="account_pic"></span></a>
<li><a href="account.html"><span id="account-username"></span></a></li>
</ul>
</div>
</nav>
<div class="center">
<!--Heading-->
<h3><b>Try Out These Games!</b></h3>
<p>
Discover some of our games that are specially designed for secondary students to help you understand
the concept of respiratory system in a fun and interesting way. Try out by clicking on one of the games
below!
</p><br>
</div>
<div class="center row" style="margin-left: 125px;">
<!--Game 1: Crossword-->
<div class="card"><br>
<h4><b>CROSSWORD PUZZLE</b></h4>
<img src="images/crossword.jpeg" alt="Crossword" style="width:270px">
<div class="containerCard">
<a class="button" href="crossword.html" role="button">Play Now</a>
</div>
</div>
<!--Game 2: Hangman-->
<div class="card"><br>
<h4><b>HANGMAN</b></h4>
<img src="images/hangman.jpg" alt="Crossword" style="width:270px; height: 280px;">
<div class="containerCard">
<a class="button" href="hangman.html" role="button">Play Now</a>
</div>
</div>
<!--Game 3: Word Search-->
<div class="card"><br>
<h4><b>WORD SEARCH</b></h4>
<img src="images/wordsearch.png" alt="Crossword" style="width:270px; height: 280px;">
<div class="containerCard">
<a class="button" href="word_search.html" role="button">Play Now</a>
</div>
</div>
</div>
<!--Leave spaces-->
<br><br><br><br><br>
<!--Footer-->
<div class ="footer">
<br>Copyright © 2022 Lee Jia Ying Jess & Elluru Sree Harshini
<br>- All Rights Reserved.
</div>
<!--JavaScripts-->
<script src="js/script.js"></script>
<script src="js/account.js"></script>
</body>
</html>