-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
92 lines (86 loc) · 3.83 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-XW3X6YCBCQ"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-XW3X6YCBCQ');
</script>
<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.">
<meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate" />
<meta http-equiv="Pragma" content="no-cache" />
<meta http-equiv="Expires" content="0" />
<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="description">
<div class="description-container">
<div class="description-text">
<h2>UFL - kas tai?</h2>
<p>UFL, arba "United Fantasy League" yra lietuvių bendruomenė išsimėčiusi visame pasaulyje, aktyviai žaidžianti
ESPN NBA fantasy platformos žaidimą. Šiuo metu bendruomenę sudaro 32 komandų valdytojai, kurie varžosi
dvejose A ir B lygose. <br><a class="linkToGame" href="https://fantasy.espn.com/basketball">Nuoroda į žaidimą.</a>
<br>
A lygos nugalėtojas apdovanojamas čempiono žiedu, visai kaip NBA lygoje.
</p>
</div>
<div class="description-images">
<img src="images/ziedas1.jpg" alt="2024m cempiono ziedai" class="description-image">
<img src="images/ziedas2.jpg" alt="2024m cempiono ziedai" class="description-image">
</div>
</div>
</section>
<section id="progress-bar-container">
<h2>Sezono progresas</h2>
<div class="progress-bar">
<div class="progress-fill" id="progress-fill"></div>
</div>
<div id="progress-percentage" class="progress-percentage"></div>
</section>
<!-- Countdown Section -->
<section id="countdowns">
<div class="countdown" id="countdown1">
<h3>Iki sezono pabaigos liko:</h3>
<div class="time" id="timer1"></div>
</div>
<div class="countdown" id="countdown2">
<h3>Iki mainų pabaigos liko:</h3>
<div class="time" id="timer2"></div>
</div>
<div class="countdown" id="daysSince">
<h3>Nuo sezono pradžios praėjo</h3>
<div class="time" id="daysCounter"></div>
</div>
</section>
</main>
<footer>
<p>© 2024 United Fantasy League </p>
</footer>
<script src="script.js"></script>
</body>
</html>