-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
58 lines (47 loc) · 1.67 KB
/
index.html
File metadata and controls
58 lines (47 loc) · 1.67 KB
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
55
56
57
58
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="style.css" />
</head>
<body>
<main class="container">
<form class="wrapper">
<div class="teste">
<h1>CADASTRO</h1>
<div class="limit">
<label class="form-label" for="name">Name</label>
<input type="text" id="name" name="name" placeholder="Full Name" />
<label class="form-label" for="email">Email</label>
<input type="email" id="email" name="email" placeholder="E-mail" />
<label class="form-label" for="password">Password</label>
<input type="password" id="password" name="password" placeholder="Password" />
<label class="form-label" for="date">Date</label>
<input type="date" name="date" id="date" />
</div>
<div class="mark">
<input type="checkbox" id="html" />
<label for="html">HTML</label>
<input type="checkbox" id="css" />
<label for="css">CSS</label>
<input type="checkbox" id="js" />
<label for="js">JavaScript</label>
</div>
<div class="about">
<label class="form-label" for="aboutme">About me</label>
<textarea style="resize: none" name="aboutme" id="aboutme" cols="5" rows="5"></textarea>
<h3>Sex</h3>
<div class="gender">
<input type="radio" name="sex" id="male" checked />
<label class="form-label" for="male">M</label>
<input type="radio" name="sex" id="female" />
<label class="form-label" for="female">F</label>
</div>
<button class="btn">Submit</button>
</div>
</div>
</form>
</main>
</body>
</html>