-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
46 lines (45 loc) · 1.52 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Champions League</title>
<link rel="stylesheet" href="styles.css" />
<link rel="icon" type="image/png" href="image/webicon.png" />
<link
href="https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;1,900&display=swap"
rel="stylesheet"
/>
</head>
<body>
<div id="welcomeScreen">
<h1>
<span class="championsLeagueText">Welcome to the 2024-25</span>
<br />
<span class="championsLeagueText">Champions League</span>
<br />
<span class="championsLeagueText">Draw simulator!</span>
</h1>
<p class="championsLeagueText" id="scrollText">Scroll down to continue</p>
<iframe
src="https://ghbtns.com/github-btn.html?user=tokgozkerem&repo=ucl_2024_draw_simulator&type=star&count=false"
frameborder="0"
scrolling="0"
width="150"
height="20"
title="GitHub"
></iframe>
</div>
<div id="contentContainer">
<div class="background"></div>
<div id="drawContainer"></div>
<div id="buttonContainer">
<button id="drawButton" class="button">Draw!</button>
<button id="nextButton" class="button">Group Stages</button>
</div>
<div id="groupContainer"></div>
<script type="module" src="groups.js"></script>
<script type="module" src="draw.js"></script>
</div>
</body>
</html>