forked from Ayushparikh-code/Web-dev-mini-projects
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
32 lines (32 loc) · 989 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.css"
integrity="sha512-5A8nwdMOWrSz20fDsjczgUidUBR8liPYU+WymTZP1lmY9G6Oc7HlZv156XqnsgNUzTyMefFTcsFH/tnJE/+xBg=="
crossorigin="anonymous"
/>
<title>Battery Indicator</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<section class="sec">
<div class="toggle"></div>
<div class="box">
<div class="content">
<h3>Battery</h3>
<div class="batteryShape">
<div class="level">
<div class="percentage"></div>
</div>
</div>
<div class="percent">50%</div>
</div>
</div>
</section>
<script src="script.js"></script>
</body>
</html>