-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
40 lines (37 loc) · 1.21 KB
/
index.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
<!DOCTYPE html>
<html lang="cs">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>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>
<li><a href="timeline.html">Timeline</a></li>
</ul>
</nav>
<div class="search-bar">
<input type="text" placeholder="Hledat...">
</div>
</header>
<main>
<section class="main-content">
<h1>Vítejte na Furplexnews</h1>
<p>Vaše zdroje pro nejnovější herní zprávy, recenze a mnoho dalšího.</p>
</section>
</main>
<footer>
<p>© 2024 Furplexnews</p>
</footer>
<script src="script.js"></script>
</body>
</html>