-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
51 lines (49 loc) · 1.9 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>League of Legend adventure</title>
<link rel="stylesheet" href="./public/css/champSelectStyle.css">
</head>
<body>
<header>
<h1>League of Legend: Fantasy !</h1>
<h3>Pick yourself a champion and start the adventure</h3>
<div id="tips">
<div>
<img src="./public/img/Assassin_icon.png" alt="Assassin_icon">
Assassins have high attack damage and move speed and crit but low life
<br>
<img src="./public/img/Mage_icon.png" alt="Mage_icon">
Mages have high ability power
<br>
<img src="./public/img/Support_icon.png" alt="Support_icon">
Supports have high mana
</div>
<div>
<img src="./public/img/Marksman_icon.png" alt="Marksman_icon">
Marksman / ADC have more attack damages, range, attack speed and crit
<br>
<img src="./public/img/Fighter_icon.png" alt="Fighter_icon">
Fighters / Bruisers have a more life and damages
<br>
<img src="./public/img/Tank_icon.png" alt="Tank_icon">
Tanks have more life, armor and hp regen but less movement speed
</div>
</div>
</header>
<div id="main"> </div>
<div class="champPick">
<div id="profile"></div>
<div id="description">
<button class="pick">Select this champion</button>
</div>
<div id="stats">
</div>
</div>
</body>
<script src="./public/js/jsonFunctions.js"></script>
<script type="text/javascript" src="./public/js/selection.js"></script>
</html>