-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathplayer.html
93 lines (81 loc) · 2.56 KB
/
player.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
93
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="Permissions-Policy" content="interest-cohort=(), user-id=()">
<title>Clicker Monster</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<header>
<img src="assets/egg-logo.png" alt="egg-logo" class="egg-logo" />
<h1>Clicker Monster</h1>
<nav class="desktop-navigation">
<ul>
<li id="statistics"><a href="stats.html">Stats</a></li>
<li id="home"><a href="home.html">Home</a></li>
<li><a href="player.html">Player</a></li>
</ul>
</nav>
</header>
<main>
<div class="playerInfo">
<div class="selectedAvatar">
</div>
<div class="usernameChosen">
username
</div>
<div class="level">
lvl
</div>
</div>
<div class="score-container">
<div class="points">
<h2 class="score-title">Round n°1</h2>
<p class="total-points">Total points :</p>
</div>
<div class="points">
<h2 class="score-title">Round n°2</h2>
<p class="total-points">Total points :</p>
</div>
<div class="points">
<h2 class="score-title">Round n°3</h2>
<p class="total-points">Total points :</p>
</div>
</div>
<div class="bonus-container">
<div id="first-icon" class="bonus-icons">
<img src="assets/star-trophy.png" alt="star-bonus" class="star-bonus" />
</div>
<div id="first-bonus" class="bonus-name">
<p>Autoclic level 1</p>
</div>
<div id="second-icon" class="bonus-icons">
<img src="assets/star-trophy.png" alt="star-bonus" class="star-bonus" />
</div>
<div id="second-bonus" class="bonus-name">
<p>?</p>
</div>
<div class="bonus-icons">
<img src="assets/star-trophy.png" alt="star-bonus" class="star-bonus" />
</div>
<div class="bonus-name">
<p>?</p>
</div>
</div>
</main>
<footer>
<nav class="mobile-navigation">
<ul>
<button id="statistics"><a href="stats.html">Stats</a></button>
<button id="home">
<a href="home.html">Home</a>
</button>
<button class="selected" id="player"><a href="player.html">Player</a></button>
</ul>
</nav>
</footer>
<script src="script.js"></script>
</body>
</html>