-
Notifications
You must be signed in to change notification settings - Fork 229
Expand file tree
/
Copy pathindex.html
More file actions
36 lines (36 loc) · 1.06 KB
/
index.html
File metadata and controls
36 lines (36 loc) · 1.06 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>4Geeks Academy</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<form action="#" method="get" target="_parent">
<fieldset>
<legend>Full Name</legend>
<label for="firstname">First:</label>
<input type="Text" name="firstname">
<label for="lastname">Last:</label>
<input type="Text" name="lastname">
<label for="lastname">Age:</label>
<input type="Text" name="age">
</fieldset>
<fieldset>
<legend>Contact information</legend>
<input type="Text" name="email" placeholder="username@domain.com">
<input type="Text" name="phone" placeholder="Mobile phone">
<input type="Text" name="website" placeholder="Personal Website URL">
</fieldset>
<fieldset>
<legend>Gender</legend>
<label for="gender">Male:</label>
<input type="radio" name="gender" value="male">
<label for="gender">Female:</label>
<input type="radio" name="gender" value="female">
</fieldset>
<input type='submit' value='SUBSCRIBE' />
</form>
</body>
</html>