-
Notifications
You must be signed in to change notification settings - Fork 327
Expand file tree
/
Copy pathproject.html
More file actions
52 lines (37 loc) · 1.78 KB
/
project.html
File metadata and controls
52 lines (37 loc) · 1.78 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
50
51
52
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="style.css">
</head>
<!-- <link rel="stylesheet" href="project.css"> -->
<body>
<div class="container">
<h1>TRAVEL FORM</h1><br>
<form action="index.php" method="post">
<p>Name:-</p>
<input type="text" name="name" id="name" placeholder="Enter your name"><br>
<p>Age:-</p>
<input type="number" name="age" id="age" min="00" max="150" placeholder="Enter your age" ><br>
<p>Gender:-</p>
<select name="Gender" id="Gender">
<option value="Choose">Choose your Gender</option>
<option value="Male">Male</option>
<option value="Female">Female</option>
<option value="Other">Other</option>
</select><br>
<p>Email:-</p>
<input type="email" name="email" id="email" placeholder="Enter your email"><br>
<p>Phone No.:-</p>
<input type="number" name="contact" id="contact" min="999999999" max="9999999999" placeholder="Enter your Contact No." ><br>
<p>Address:-</p>
<textarea name="desc" id="desc" cols="30" rows="8" placeholder="Enter your Address"></textarea><br>
<button class="btn">Submit</button>
<!-- <button class="btn">Reset</button> -->
</form>
</div>
</body>
</html>