-
Notifications
You must be signed in to change notification settings - Fork 0
/
score.html
134 lines (132 loc) · 4.99 KB
/
score.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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
<!Doctype html>
<html lang="en-US">
<head>
<title>Country Finder</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,initial-scale=1.0">
<meta name="author" content="Anuj Yadav (yadavanuj1996)">
<meta name="keywords" content="country finder,Geography,world map,geography game,game,Home Page">
<meta name="description" content="Country finder is a game to challenge and learn about the location of a country on world map, fun way to learn geography and score amongst your friends.">
<link rel="stylesheet" href="./score.css">
<script src="./score.js"></script>
<script src="https://kit.fontawesome.com/ba3646b588.js">
</script>
<link href="https://fonts.googleapis.com/css?family=Questrial&display=swap" rel="stylesheet">
<script src="https://kit.fontawesome.com/ba3646b588.js">
</script>
</head>
<body>
<div id="main-holder">
<div id="sidebar">
<div id="game-details">
<div id="high-score-image-div">
<img id="high-score-image" src="https://image.freepik.com/free-vector/hand-drawing-illustration-hipster-style-concept_53876-28497.jpg" alt="high score image">
</div>
<div id="high-score-div">
<h2 id="highest-scorer">Anuj Yadav</h2>
<p>Top Scorer</p>
<div id="hightest-scorer-details">
<div>
<h3>100</h3>
<p>Total Users</p>
</div>
<div>
<h3 id="top-score-hard">220</h3>
<p>Highest Score</p>
</div>
</div>
</div>
</div>
<div id="follow-us-div">
<h3 class="white-color no-bottom-margin">Liked Us</h3>
<button id="play-again-btn">PLAY AGAIN</button>
<div id="social-div">
<i class="fab fa-instagram"></i>
<i class="fab fa-facebook-square"></i>
<i class="fab fa-twitter-square"></i>
<i class="fab fa-youtube"></i>
</div>
</div>
</div>
<div id="main-div">
<div id="heading-section">
<h1>Country Finder</h1>
<h3>Howdy Amigo!</h3>
</div>
<div id="present-score-details">
<div id="present-score-img-div">
<img id="winner-image" src="https://image.freepik.com/free-vector/office-worker-holding-golden-champion-cup-aloft_82574-8928.jpg" alt="winner-prize">
</div>
<div id="present-score-text-div">
<div id="present-score-img">
<div class="scorer-div">
<div id="scorer-holder">
<div id="scorer-background">
<div id="scorer-color-zone">
<div class="scorer-tick"></div>
</div>
</div>
</div>
</div>
</div>
<div id="present-score-divs">
<div class="present-score-card">
<p id="player-score" class="present-score-card-heading no-padding">250</p>
<p class="present-score-card-sub-heading no-padding">Your Score</p>
</div>
<div class="present-score-card">
<p id="player-percentile" class="present-score-card-heading no-padding">87%</p>
<p class="present-score-card-sub-heading no-padding">Ahead Of</p>
</div>
<div class="present-score-card">
<p id="player-difficulty-level" class="present-score-card-heading no-padding">Easy</p>
<p class="present-score-card-sub-heading no-padding">Difficulty</p>
</div>
</div>
</div>
</div>
<div id="top-score-div">
<h6>Top Scores</h6>
<div class="other-top-align">
<div class="top-scorer-card">
<div class="scorer-card-points">
<h4 id="intermediate-scorer">Brad Pitt</h4>
<h4 class="score-type">Intermediate</h4>
<h4 id="intermediate-score">250</h4>
</div>
</div>
<div class="top-scorer-card">
<div class="scorer-card-points">
<h4 id="easy-scorer">Tom Hanks</h4>
<h4 class="score-type">Easy</h4>
<h4 id="easy-score">230</h4>
</div>
</div>
</div>
<div class="other-top-align">
<div class="top-scorer-card">
<div class="scorer-card-points">
<h4 id="player-of-the-week-scorer">Al Pacino</h4>
<h4 class="score-type">Player of the Week</h4>
<h4 id="player-of-the-week-score">210</h4>
</div>
</div>
<div class="top-scorer-card">
<div class="scorer-card-points">
<h4 id="player-of-the-day-scorer">Robert De Niro</h4>
<h4 class="score-type">Player of the Day</h4>
<h4 id="player-of-the-day-score">180</h4>
</div>
</div>
</div>
</div>
</div>
<div id="score-div">
<div id="other-scores-div">
<h4 class="text-center white-color">Recent Players</h4>
</div>
</div>
</div>
</div>
</body>
</html>