-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
49 lines (43 loc) · 1.41 KB
/
index.html
File metadata and controls
49 lines (43 loc) · 1.41 KB
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.14.0/css/all.min.css" integrity="sha512-1PKOgIY59xJ8Co8+NE6FZ+LOAZKjy+KY8iq0G4B3CyeY6wYHN3yt9PW0XpSriVlkMXe40PTKnXrLnZ9+fkDaog==" crossorigin="anonymous" />
<title>Animated Counter</title>
<link href="style.css" rel="stylesheet" type="text/css" />
</head>
<body>
<header>
<div class="container">
<h1>Animated Couter</h1>
</div>
</header>
<section class="counters">
<div class="container">
<div>
<i class="fab fa-youtube fa-4x"></i>
<div class="counter" data-target="60000">0</div>
<h3>Subscribers</h3>
</div>
<div>
<i class="fab fa-twitter fa-4x"></i>
<div class="counter" data-target="15000">0</div>
<h3>Followers</h3>
</div>
<div>
<i class="fab fa-facebook fa-4x"></i>
<div class="counter" data-target="9000">0</div>
<h3>Likes</h3>
</div>
<div>
<i class="fab fa-linkedin fa-4x"></i>
<div class="counter" data-target="5000">0</div>
<h3>Connections</h3>
</div>
</div>
</section>
<script src="script.js">
</script>
</body>
</html>