forked from Agusioma/animated-counter-javascript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
animation-counter.html
39 lines (39 loc) · 1.47 KB
/
animation-counter.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
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Animation counter</title>
</head>
<link href= "https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-giJF6kkoqNQ00vy+HMDP7azOuL0xtbfIcaT9wjKHr8RbDVddVHyTfAAsrekwKmP1" crossorigin="anonymous">
<style>
.container{
background-color: #6f4e37;
}
p{
text-align: center;
}
</style>
<body onload="load()">
<p>
<div class="d-flex justify-content-center fs-1 fw-bold ">Animation Counter</div>
</p>
<p>
<div class="container">
<div class="row">
<div class="col-sm">
<p id='0101' class="fs-2 text-light">0</p>
<p class="text-light">Site visits</p>
</div>
<div class="col-sm">
<p id='0102' class="fs-2 text-light">876</p>
<p class="text-light">Members signed</p>
</div>
<div class="col-sm">
<p class="fs-2 text-light"><span id='0103'>12</span>%</p>
<p class="text-light align-content-center">Average complain rate</p>
</div>
</div>
</div>
</p>
</body>
<script src="js-anim.js"></script>
</html>