-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
41 lines (35 loc) · 1.4 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!--=============== REMIXICONS ===============-->
<link href="https://cdn.jsdelivr.net/npm/remixicon@2.5.0/fonts/remixicon.css" rel="stylesheet">
<!--=============== CSS ===============-->
<link rel="stylesheet" href="assets/css/styles.css">
<title>Live battery percentage - Empati.org</title>
</head>
<body>
<!--=============== BATTERY ===============-->
<section class="battery">
<div class="battery__card">
<div class="battery__data">
<p class="battery__text">Battery</p>
<h1 class="battery__percentage">
20%
</h1>
<p class="battery__status">
Low battery <i class="ri-plug-line"></i>
</p>
</div>
<div class="battery__pill">
<div class="battery__level">
<div class="battery__liquid"></div>
</div>
</div>
</div>
</section>
<!--=============== MAIN JS ===============-->
<script src="assets/js/main.js"></script>
</body>
</html>