-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgames.html
More file actions
33 lines (26 loc) · 901 Bytes
/
games.html
File metadata and controls
33 lines (26 loc) · 901 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" type="image/x-icon" href="./images/logo/favicon.ico">
<title>QGame - Educational Games Platform</title>
<link rel="stylesheet" href="./style.css">
<script src="./components.js"></script>
</head>
<body>
<navbar-component></navbar-component>
<section class="games" id="games">
<div class="container">
<div class="games-header">
<h2>Our Games</h2>
<p>Discover our collection of word, math, and puzzle games that make learning fun</p>
</div>
<div class="games-grid"></div>
</div>
</section>
<footer-component></footer-component>
<script src="./script.js"></script>
<script src="./games.js"></script>
</body>
</html>