-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathHTML and CSS 5.html
More file actions
35 lines (33 loc) · 887 Bytes
/
HTML and CSS 5.html
File metadata and controls
35 lines (33 loc) · 887 Bytes
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
<!Doctype html>
<html>
<head>
<title>HTML and CSS 5</title>
</head>
<body>
<div><form method = "post" action = "index.html"></form>
<input type="submit"/>
</div>
<Div>
<h1>Sign up form</h1>
</Div>
<div>
<Legend>Your basic info</Legend>
<label for="name">Name</label>
<input id="name" type="text">
<label for="Email">Email</label>
<input id="email" type="text">
<label for="password">Password</label>
<input id="password" type="text">
</div>
<div>
<form>
<input type="radio" name="Gender" value="Male"/>Male
<input type="radio" name="Gender" value="Female"/>Female
<input type="radio" name="Non-binary" value="Non-binary"/>Non-binary
</form>
</div>
<div>
<button type="button" >Sign up</button>
</div>
</body>
</html>