-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
66 lines (64 loc) · 2.13 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link href="/dist/output.css" rel="stylesheet" />
<link rel="stylesheet" href="styles.css" />
<script src="script.js" defer></script>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- Swiper CSS -->
<link rel="stylesheet" href="https://unpkg.com/swiper/swiper-bundle.css" />
<link
rel="stylesheet"
href="https://unpkg.com/swiper/swiper-bundle.min.css"
/>
<!-- Swiper JS -->
<script src="https://unpkg.com/swiper/swiper-bundle.js"></script>
<script src="https://unpkg.com/swiper/swiper-bundle.min.js"></script>
<title>Jogo Bonito</title>
</head>
<body class="min-h-screen bg-slate-50 dark:bg-black dark:text-white">
<header>
<div class="logo">
<img src="" alt="logo" />
</div>
<h2>⚽ Jogo Bonito ⚽</h2>
<nav>
<ul>
<li><a href="">Home</a></li>
<li><a href="">Leaderboard</a></li>
<li>
<button class="contact"><a href="">Contact Us</a></button>
</li>
</ul>
</nav>
</header>
<div class="swiper-container">
<div class="swiper-wrapper">
<!-- Each slide represents a gameweek -->
<div class="swiper-slide">
<main>
<div class="winning-team">
<div class="team-image">
<img src="" alt="Winning Team Image" id="team-image" />
</div>
<div class="box">
<span class="borderLine"></span>
<div class="manager-details">
<h2 id="gameweek">Gameweek</h2>
<p id="manager-name">Manager Name:</p>
<p id="mascot">Mascot: Mascot Name</p>
<p id="points-earned">
Points Gained: <span id="points">0</span>
</p>
</div>
</div>
<div class="swiper-pagination"></div>
</div>
</main>
</div>
<!-- Add more slides for each gameweek as needed -->
</div>
</div>
</body>
</html>