-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
54 lines (44 loc) · 1.38 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
52
53
54
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Focussss</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link
href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap"
rel="stylesheet">
<link rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/normalize/5.0.0/normalize.min.css">
<link rel="stylesheet" href="./styles/style.css">
</head>
<body>
<canvas></canvas>
<div class="form-wrapper">
<form onsubmit="return false;">
<hgroup>
<h1>Focusss</h1>
<h3>Form focus without outlines.</h3>
</hgroup>
<label for="name">Name</label>
<input type="text" id="name">
<label for="email">Email</label>
<input type="email" id="email">
<label for="password">Password</label>
<input type="password" id="password">
<div class="checkbox">
<input type="checkbox" id="check1">
<label for="check1">I accept the terms and conditions</label><br>
</div>
<div class="checkbox">
<input type="checkbox" id="check2">
<label for="check2"> Are you ready for hunt!</label><br>
</div>
<button>Submit</button>
</form>
</div>
<!-- partial -->
<script src="./js/script.js"></script>
</body>
</html>