-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcheckbox.html
36 lines (31 loc) · 1.13 KB
/
checkbox.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>checkbox</title>
<link rel="stylesheet" href="./css/semantic/semantic.min.css">
<link rel="stylesheet" href="./checkebox.css">
</head>
<body>
<input type="checkbox" name="menu" id="switch">
<div class="sidemenu">
<label for="switch"><i class="icon ui list"></i></label>
<h3>Menu</h3>
<h3>Input</h3>
<p>Action</p>
</div>
<div class="body">
<h3>body</h3>
<div class="box">
<h3>Search using css animation</h3>
<input type="search" name="search" id="search" placeholder="Search...">
<p>google.engine.cd</p>
</div>
<p>Lorem, ipsum dolor sit amet consectetur adipisicing elit. Repudiandae eius facilis ex quo reiciendis expedita
sunt officia, velit aspernatur, consequuntur blanditiis itaque. Incidunt quibusdam, inventore quidem
distinctio in sapiente possimus?</p>
</div>
</body>
</html>