-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
47 lines (39 loc) · 1.34 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Custom Checkbox">
<meta name="keywords" content="HTML, HTML5, CSS, CSS3, Scss, Responsive Web Design, Custom Checkbox" />
<meta name="author" content="Md. Mashroor Zilan Snigdho">
<link rel="stylesheet" href="css/style.css">
<title>Document</title>
</head>
<body>
<header>
Custom Checkbox
</header>
<main>
<div class="checkbox-one">
<input type="checkbox" id="CB1">
<label for="CB1">Checkbox 1</label>
</div>
<div class="checkbox-two">
<input type="checkbox" id="CB2">
<label for="CB2">Checkbox 2</label>
</div>
<div class="checkbox-three">
<input type="checkbox" id="CB3">
<label for="CB3">Checkbox 3</label>
</div>
</main>
<footer>
<a href="https://github.com/mzs21/custom-checkbox" alt="Github" target="_blank">
<div class="github"></div>
</a>
<a href="https://www.linkedin.com/in/mdmzs/" alt="LinkedIn" target="_blank">
<div class="linkedIn"></div>
</footer>
</body>
</html>