-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathform.html
More file actions
27 lines (27 loc) · 849 Bytes
/
form.html
File metadata and controls
27 lines (27 loc) · 849 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
<!DOCTYPE html>
<html>
<head>
<title>Form</title>
</head>
<body>
<form action="#">
<label for="first-name">First Name</label>
<input type="text" name="first name" id="f-name" requried />
<br />
<br />
<label for="last-name">Last Name</label>
<input type="text" name="last name" id="last-name" required />
<br />
<br />
<label for="email adress">email</label>
<input type="text" name="eamil adress" id="email adress" required />
<br />
<br />
<label for="password">password</label>
<input type="text" name="password" id="password" required />
<br />
<br />
<input type="submit"/>
</form>
</body>
</html>