-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
66 lines (64 loc) · 2.08 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
63
64
65
66
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>LeaderBoard</title>
<link rel="stylesheet" href="style.css" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css"
/>
</head>
<body>
<h1>LeaderBoard</h1>
<div class="input-group">
<input type="text" id="firstName" placeholder="first name" />
<input type="text" id="lastName" placeholder="last name" />
<input type="text" id="inputtedCountry" placeholder="country" />
<input type="number" id="inputtedScore" placeholder="score" />
<button title="add to leaderboard">add</button>
<button id="sorting" title="score sorting">🔁</button>
</div>
<p id="redMessage"></p>
<div class="devs">
<!-- <div class="dev" id="dev-1">
<div class="name-date">
<p id="name">Jhone Doe</p>
<p id="dateTime">DEC 20,2022,12:12</p>
</div>
<div class="country">
<p id="country">UK</p>
</div>
<div class="scoreClass">
<p id="score-1">88</p>
</div>
<div class="icon-group">
<div class="delete" id="delete-1">
<img src="images/delete-button-svgrepo-com.svg" alt="" srcset="">
</div>
<div class="add5" id="add5-1">
+5
</div>
<div class="minus5" id="minus5-1">
-5
</div>
</div>
</div> -->
</div>
<footer>
<p>
developed with
<span
class="anime animate__animated animate__heartBeat animate__infinite"
>❤️</span
>
by
<a href="https://github.com/Sampad-Sarker" target="_blank"
>SampadSarker</a
>
</p>
</footer>
<script src="index.js"></script>
</body>
</html>