-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhomepage.HTML
36 lines (32 loc) · 1.16 KB
/
homepage.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
<!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">
<link rel="stylesheet" href="homepage.css">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/font/bootstrap-icons.css">
<title>easy_game_website</title>
</head>
<body>
<navbar class="navbar">
<i class="menuicon bi bi-list"></i>
<a class="back_homepage" href="homepage.HTML"><i class="bi bi-house-door-fill"></i></a>
<h3 class="title">S1mple Games</h3>
</navbar>
<h1 class="gametitle">Games</h1>
<div class="games">
<a class="gamebox catchball" href="catch_ball/catch_ball.HTML">
<i class="ballicon bi bi-geo-fill"></i>
<h1>Catch Ball</h1>
<p>"catch me if you can"</p>
</a>
<a class="gamebox dice" href="https://freeonlinedice.com/">
<i class="bi bi-dice-6"></i>
<h1>Dice</h1>
<p>When you can't decide</p>
</a>
</div>
<p class="bottom">More function is developing</p>
</body>
</html>