-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
52 lines (52 loc) · 1.52 KB
/
Copy pathindex.html
File metadata and controls
52 lines (52 loc) · 1.52 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
<!DOCTYPE html>
<html>
<head>
<title>Brody Devv Games</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" type="text/css" href="style.css">
<link rel="stylesheet" type="text/css" href="bg.css"
</head>
<body>
<header>
<h1>Brody Devv Games</h1>
<nav>
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">Games</a></li>
</ul>
</nav>
</header>
<main>
<section>
<h2>Welcome to Brody Devv Games</h2>
</section>
<section>
<h2>Featured Games</h2>
<div class="games-grid">
<div class="game">
<a href="https://brody-devv.github.io/Test/stable-download/web/">
<img src="https://via.placeholder.com/100x100" alt="Game 1">
</a>
<h3>Minecraft</h3>
</div>
<div class="game">
<a href="https://brody-devv.github.io/clicking-game/">
<img src="https://via.placeholder.com/100x100" alt="Game 2">
</a>
<h3>Robbery Clicker</h3>
</div>
<div class="game">
<a href="https://brody-devv.github.io/eagler1-8/">
<img src="https://via.placeholder.com/100x100" alt="Game 3">
<h3>Minecraft Server</h3>
</a>
</div>
</div>
</section>
</main>
<footer>
<p>© 2023 Brody Devv Games. All rights reserved.</p>
</footer>
</body>
</html>