-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
37 lines (29 loc) · 1.41 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Welcome to travel Form</title>
<link rel="stylesheet" href="style.css" />
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Playwrite+GB+S:ital,wght@0,100..400;1,100..400&display=swap"
rel="stylesheet">
</head>
<body>
<img class="bg" src="image/bg.jpg" alt="Cox's Bazar">
<div class="container">
<h1>Welcome to Cox's Bazar Tour Form</h1>
<p>Confirm your details to confirm your participation in to tour</p>
<form action="process.php" method="post">
<input type="text" name="name" id="name" placeholder="Enter your Name" />
<input type="text" name="age" id="age" placeholder="Enter your Age" />
<input type="text" name="gender" id="gender" placeholder="Enter your Gender" />
<input type="text" name="email" id="email" placeholder="Enter your Email" />
<input type="text" name="phone" id="phone" placeholder="Enter your Phone Number" />
<textarea name="other" id="other" placeholder="Enter others Information here : "></textarea>
<button class="btn">Submit</button>
</form>
</div>
</body>
</html>