-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
28 lines (28 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Toggle Butttons</title>
<link rel="stylesheet" href="./index.css">
<link rel="stylesheet" href="http://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css"/>
<link rel="icon" type="image/x-icon" href="./Related-Media/logo.png">
</head>
<body>
<section class="Main-Section">
<div class="Content-Wrapper">
<div class="Toogle-t Toogle-3">
<input name="Toogle-Switch-3" id="Toogle-Switch-3" class="Toogle-Switch" type="checkbox">
<p class="OFF">OFF</p>
<label class="Label-Toogle-Switch" for="Toogle-Switch-3">
<i class="fa fa-check"></i>
<div class="Toogle">
</div>
<i class="fa fa-times"></i>
</label>
<p class="ON">ON</p>
</div>
</div>
</section>
</body>
</html>