forked from Harbduls/codeschool-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathform.html
More file actions
49 lines (38 loc) · 1.28 KB
/
form.html
File metadata and controls
49 lines (38 loc) · 1.28 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
41
42
43
44
45
46
47
48
49
<!DOCTYPE html>
<html>
<head>
<title>Registration Form</title>
</head>
<body>
<h1>
Registration Form
</h1>
<h2>Sign Up</h2>
<form action="/submit" method="POST">
<label>Full Name:</label><br>
<input type="text" name="fullname" required><br><br>
<label>Email:</label><br>
<input type="email" name="email" required><br><br>
<label>Password:</label><br>
<input type="password" name="password" required><br><br>
<label>Age:</label><br>
<input type="number" name="age"><br><br>
<label>Date of Birth:</label><br>
<input type="date" name="dob"><br><br>
<label>Gender:</label><br>
<input type="radio" name="gender" value="male"> Male
<input type="radio" name="gender" value="female"> Female
<br><br>
<input type="checkbox" required> I agree to the terms
<br><br>
<button type="submit">Register</button>
</form>
<iframe
src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3153.086441678644!2d-122.4194154846818!3d37.77492977975971!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x8085809c5b5b5b5%3A0x123456789abcdef0!2sSan+Francisco%2C+CA%2C+USA!5e0!3m2!1sen!2s!4v1610000000000"
width="600"
height="450">
</iframe>
<br>
<video src="https://www.youtube.com/watch?v=fZmQ_aPXJAM">my video </video>
</body>
</html>