forked from lucthienphong1120/codelearn
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgame.html
More file actions
91 lines (91 loc) · 3.6 KB
/
Copy pathgame.html
File metadata and controls
91 lines (91 loc) · 3.6 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
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
<!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">
<title>Document</title>
<link rel="stylesheet" href="./style.css">
</head>
<body>
<nav>
<div class="wrap-left">
<div class="logo">
<a href="./index.html"><img src="./img/logo.png" alt=""></a>
</div>
<ul class="navbar">
<li>
<a class="navbar-item" href="./index.html">Learning</a>
</li>
<li>
<a class="navbar-item" href="#">Training</a>
</li>
<li>
<a class="navbar-item" href="#">Challenge</a>
</li>
<li>
<a class="navbar-item" href="#">Evaluating</a>
</li>
<li>
<a class="navbar-item" href="#">Discussion</a>
</li>
<li>
<a class="navbar-item" href="./game.html">Games</a>
</li>
</ul>
</div>
<div class="wrap-right">
<div class="language">
<img src="./img/en.png" alt="English">
<img src="./img/vn.png" alt="Vietnam" style="display: none;">
</div>
<div class="user">
<img src="./img/user.svg" alt="user">
</div>
</div>
</nav>
<div class="game-banner">
<img src="./img/game-banner.png" alt="game">
</div>
<div id="body">
<div class="content">
<div class="game-list">
<img src="./img/game1.jpg" alt="">
<img src="./img/game2.jpg" alt="">
<img src="./img/game3.jpg" alt="">
</div>
</div>
</div>
<div id="footer">
<div class="content">
<div class="footer-main">
<img src="./img/logo.png" alt="">
<p>CodeLearn is an online platform that helps users to learn, practice coding skills and join the online coding contests.</p>
<img src="./img/social.png" alt="">
</div>
<div class="footer-col">
<h3 class="footer-col-heading">LINKS</h3>
<a href="https://codelearn.io/learning" class="footer-col-link">Learning</a>
<a href="https://codelearn.io/training" class="footer-col-link">Training</a>
<a href="https://codelearn.io/fights" class="footer-col-link">Fights</a>
<a href="https://codelearn.io/game" class="footer-col-link">Game</a>
</div>
<div class="footer-col">
<h3 class="footer-col-heading">INFORMATION</h3>
<a href="https://codelearn.io/aboutus" class="footer-col-link">About Us</a>
<a href="https://codelearn.io/terms" class="footer-col-link">Terms of Use</a>
</div>
<div class="footer-col">
<h3 class="footer-col-heading">HELP</h3>
<a href="https://codelearn.io/help" class="footer-col-link">Help</a>
<a href="https://codelearn.io/discussion" class="footer-col-link">Discussion</a>
<a href="#" class="footer-col-link">Contact us</a>
</div>
</div>
</div>
<div class="copyright">
<img src="./img/fpt.svg" alt="">
Powered by CodeLearn © 2022. All Rights Reserved.
</div>
</body>
</html>