-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
51 lines (34 loc) · 1.1 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" href="./icon_1.webp" >
<link rel="stylesheet" href="./style.css">
<title>Estado de Bateria | josuedev</title>
</head>
<body>
<div class="battery">
<div class="main_container">
<div class="charging_info">
<p class="battery_level"></p>
<img class="charging_icon" src="https://i.imgur.com/xy0IMAM.png" alt="charging" />
</div>
<div class="charging_bar"></div>
<div class="other_info">
<p>Descarga: <span class="discharging_time"></span></p>
</div>
</div>
<div class="right_bar"></div>
</div>
<footer class="footer">
<p>
Joosudev - Este proyecto está bajo la Licencia MIT © <span id="currentYear"></span>
</p>
<a href="https://github.com/joosudev/EstadoBateria.git" target="_blank" rel="noopener noreferrer">
<img src="https://img.icons8.com/material-rounded/48/ffffff/github.png" alt="GitHub" class="github-icon">
</a>
</footer>
<script src="./script.js"></script>
</body>
</html>