-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
52 lines (48 loc) · 1.71 KB
/
index.html
File metadata and controls
52 lines (48 loc) · 1.71 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 lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Koza Games</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<h1>Welcome to Koza Games</h1>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="games.html">Games</a></li>
<li><a href="news.html">News</a></li>
<li><a href="about.html">About</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
</header>
<section class="banner">
<h2>Latest Releases</h2>
<div class="game-container">
<div class="game">
<img src="https://images.nightcafe.studio/jobs/vPcBEPCnK0ekzuolwZhe/vPcBEPCnK0ekzuolwZhe--3--qvr0h.jpg?tr=w-1080,c-at_max" alt="Game 1">
<h3>Game Title 1</h3>
</div>
<div class="game">
<img src="https://images.nightcafe.studio/jobs/f7YGg3ztSyNK7K2KdDwv/f7YGg3ztSyNK7K2KdDwv--1--ze9v6.jpg?tr=w-1080,c-at_max" alt="Game 2">
<h3>Game Title 2</h3>
</div>
<div class="game">
<img src="https://images.nightcafe.studio/jobs/PxiVWWcoidE5AY57kpcR/PxiVWWcoidE5AY57kpcR--3--wkc15.jpg?tr=w-1080,c-at_max" alt="Game 3">
<h3>Game Title 3</h3>
</div>
</div>
</section>
<section class="blog">
<h2>Latest Blog Posts</h2>
<div class="blog-posts"></div>
</section>
<footer>
<p>© 2024 Koza Games. All rights reserved.</p>
</footer>
<script src="script.js"></script>
</body>
</html>