-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
62 lines (53 loc) · 2.2 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
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="icon" href="favicon.ico" type="image" sizes="609x609">
<link rel="stylesheet" href="resources/css/champions.css">
<link rel="stylesheet" href="resources/css/modal.css">
<link rel="stylesheet" href="resources/css/styles.css">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>League of Help</title>
</head>
<body>
<noscript>
<h1 class="error">You need to enable JavaScript to run this app.</h1>
</noscript>
<header>
<h1>With <span id="champions-count">over 150</span> champions, you'll find the perfect match for your playstyle.
Master one, or master them all.</h1>
</header>
<main>
<input type="text" id="search-bar" placeholder="Search for a champion...">
<section id="champions">
<h1 id="loading-champions">Loading champions...</h1>
</section>
</main>
<aside id="modal-container">
<div id="modal">
<button id="close-modal">⨯</button>
<section id="modal-left">
<figcaption id="modal-title"></figcaption>
<img class="modal-image" id="modal-image-big" alt="">
<img class="modal-image" id="modal-image-small" alt="">
<progress id="modal-difficulty-meter" max="10"></progress>
<div id="modal-roles"></div>
</section>
<section id="modal-right">
<h3>Abilities:</h3>
<ul id="modal-abilities"></ul>
</section>
</div>
</aside>
<footer>
<a href="https://github.com/Vianpyro/League_of_Help/blob/main/LICENSE"> Copyright © 2021-2024</a>
<a href="https://github.com/Vianpyro">Vianney Veremme</a>
</footer>
<aside id="scripts">
<script src="resources/javascript/main.js"></script>
<script src="resources/javascript/load_champions.js" defer></script>
<script src="resources/javascript/modal.js" defer></script>
<script src="resources/javascript/search_champions.js" defer></script>
</aside>
</body>
</html>