-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathform.html
33 lines (30 loc) · 1.29 KB
/
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
<html>
<head>
<link href ="form.css" rel ="stylesheet"/>
</head>
<title>Forms</title>
<body>
<h1 class = "frm">Form</h1>
<div class = "infoForm">
<form action = "contactform.php" >
<label for="fname">First name:</label><br>
<input type="text" id="fname" name="fname"><br>
<label for="lname">Last name:</label><br>
<input type="text" id="lname" name="lname"><br>
<label for="hMany"> How Many People:</label><br>
<input type="text" id="hMany" name="hMany"><br>
<label for="tFrom"> Time From:</label><br>
<input type="text" id="tFrom" name="tFrom"><br>
<label for="tTo"> Time To:</label><br>
<input type="text" id="tTo" name="tTo"><br>
<label for="pnumber">Phone-Number:</label><br>
<input type="text" id="pnumber" name="pnumber"><br>
<label for="email">Email:</label><br>
<input type="text" id="email" name="email"><br>
</form>
<a href ="submit.html">
<Button class= "btn">Submit</Button>
</a>
</div>
</body>
</html>