-
Notifications
You must be signed in to change notification settings - Fork 0
/
Camara-HTML form.html
38 lines (37 loc) · 1.41 KB
/
Camara-HTML form.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<div class="container">
<h3> <u>Creating an HTML Form</u> </h3><br>
<form action="action_page.php">
<label for="fname">First Name</label>
<input type="text" id="fname" name="firstname" placeholder="Your name.."><br>
<br>
<label for="lname">Last Name</label>
<input type="text" id="lname" name="lastname" placeholder="Your last name.."><br>
<br>
<label for="email">Email</label>
<input type="text" id="email" name="Email" placeholder="Your Email"><br>
<br>
<label for="pword">Password</label>
<input type="text" id="pword" name="Password" placeholder="Your Password"><br>
<br>
Gender
<input type="radio" id="Male" name="Gender" value="Male">
<label for="html">Male</label>
<input type="radio" id="Female" name="Gender" value="Female">
<label for="Female">Female</label><br>
<br>
<input type="checkbox" id="agree" name="agree" value="agree">
<label for="agree"> I agree</label><br>
<br> <br>
<input type="submit" value="Submit"><br>
</form>
</div>
</body>
</html>