-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrekordai.html
44 lines (42 loc) · 1.62 KB
/
rekordai.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Lietuvių bendruomenė, aktyviai dalyvaujanti ESPN NBA Fantasy platformos žaidimuose. UFL vienija 32 komandas dviejose lygose.">
<link rel="stylesheet" href="css/styles.css">
<title>Fantasy Basketball Game</title>
</head>
<body>
<header>
<div class="header-container">
<a href="index.html">
<img src="images/logo.svg" alt="Your Logo" class="header-logo">
</a>
<h1 class="title">United Fantasy League</h1> <!-- Pridėkite klasę, kad centravimą būtų lengviau valdyti -->
<div class="hamburger" onclick="toggleMenu()">☰</div>
</div>
<nav>
<ul id="nav-links">
<li><a href="alyga.html">A lyga</a></li>
<li><a href="blyga.html">B Lyga</a></li>
<li><a href="toto.html">Totalizatoriai</a></li>
<li><a href="rekordai.html">Rekordai</a></li>
<li><a href="about.html">Apie mus</a></li>
</ul>
</nav>
</header>
<main>
<section id="coming-soon">
<div class="coming-soon-container">
<h2 class="coming-soon-title">Page Coming Soon!</h2>
<p class="coming-soon-text">We are working hard to bring you something amazing. Stay tuned!</p>
</div>
</section>
</main>
<footer>
<p>© 2024 United Fantasy League </p>
</footer>
<script src="script.js"></script>
</body>
</html>