-
Notifications
You must be signed in to change notification settings - Fork 0
/
gaming-news.html
47 lines (44 loc) · 1.42 KB
/
gaming-news.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
37
38
39
40
41
42
43
44
45
46
47
<!DOCTYPE html>
<html lang="cs">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Herní novinky - Furplexnews</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<div class="logo">Furplexnews</div>
<nav>
<ul>
<li><a href="index.html">Domů</a></li>
<li><a href="gaming-news.html">Herní novinky</a></li>
<li><a href="reviews.html">Recenze</a></li>
<li><a href="world-news.html">Světové novinky</a></li>
<li><a href="about-us.html">O nás</a></li>
</ul>
</nav>
<div class="search-bar">
<input type="text" placeholder="Hledat...">
</div>
</header>
<main>
<section class="gaming-news">
<h2>Herní novinky</h2>
<article class="news-item">
<h3>Novinka 1</h3>
<p>Popis herní novinky 1...</p>
</article>
<article class="news-item">
<h3>Novinka 2</h3>
<p>Popis herní novinky 2...</p>
</article>
<!-- Další herní novinky mohou být přidány sem -->
</section>
</main>
<footer>
<p>© 2024 Furplexnews</p>
</footer>
<script src="script.js"></script>
</body>
</html>