-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBasic form
More file actions
40 lines (38 loc) · 1.49 KB
/
Basic form
File metadata and controls
40 lines (38 loc) · 1.49 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
<!doctype html>
<html dir="ltr" lang="en-us">
<head>
<title> Form Basics</title> <!--Form Title-->
<meta charset="utf-8">
<meta name="viewport" content="woidth=device-width, initial-scale=1">
<link rel="stylesheet" href="styles.css">
</head>
<body>
<h1>Normal Form</h1>
<form action="received.html" method="get">
<label for="name"> Name</label>
<input id="name" name="name" type="text">
<ol></ol>
<label for="email"> Email Id</label>
<input id="email" name="email" type="email">
<ol></ol>
<label for="phone"> Phone Number</label>
<input id="phone" name="phone" type="tel">
<ol></ol>
<legend>What is your current status</legend>
<ol></ol>
<input id="thischeck" name="checkboxlist" type="checkbox">
<label for="thischeck">Working</label>
<input id="thicheck" name="checkboxlist" type="checkbox">
<label for="thischeck">Job searching</label>
<input id="thischeck" name="checkboxlist" type="checkbox">
<label for="thischeck">Studying</label>
<ol></ol>
<legend>Gender</legend>
<ol></ol>
<input id="thisradio" name="radiobutton" type="radio">
<label for="thisradio">Male</label>
<input id="thisradio" name="radiobutton" type="radio">
<label for="thisradio">Female</label>
<input id="thisradio" name="radiobutton" type="radio">
<label for="thisradio">Prefer not to answer</label>
</body>