-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
44 lines (41 loc) · 1.42 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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style/style.css">
<title>Automatize</title>
<script type = "módulo" src="https://unpkg.com/[email protected]/dist/ionicons/ionicons.esm.js"></script>
<script nomodule src="https://unpkg.com/[email protected]/dist/ionicons/ionicons.js"></script>
<script src="https://kit.fontawesome.com/ab8283d876.js" crossorigin="anonymous"></script>
</head>
<body>
<h1 class="title">Automatize</h1>
<section class="switch-on-of">
<div class="switch">
<div class="text on">ON</div>
<div class="text off">OFF</div>
<div class="dot"></div>
</div>
</section>
<section class="components">
<div class="control">
<div>
<p class="text2">Burst</p>
<input type="checkbox" id="cb1" hidden>
<label for="cb1">
<i class="fa-solid fa-infinity"></i>
</label>
</div>
<div>
<p class="text2">Lembrete</p>
<input type="checkbox" id="cb2" hidden>
<label for="cb2">
<i class="fa-brands fa-whatsapp"></i>
</label>
</div>
</div>
</section>
<script src="js/swit.js"></script>
</body>
</html>