-
Notifications
You must be signed in to change notification settings - Fork 0
/
enquiry.html
63 lines (60 loc) · 2.33 KB
/
enquiry.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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
<!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>Enquiry form</title>
<link rel="stylesheet" href="css/enquirystyle.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
</head>
<body>
<header>
<div class="imge-enquiry">
<img src="https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTqO_uH86yMfzJ-QtcJtzdN0QdqSACLZVlW1w&usqp=CAU" width="60%" alt="enquiry image">
</div>
</header>
<main>
<div class="container">
<h2>Enquiry Form</h2>
<div class="form-container">
<form action="php/enquiry.php" method="post">
<div class="input-name">
<i class="fa fa-user lock" ></i>
<input type="text" placeholder="first name" class="name" name="firstname">
<span>
<i class="fa fa-user lock" ></i>
<input type="text" placeholder="last name" class ="name" name="lastname">
</span>
</div>
<div class="input-name">
<i class="fa fa-envelope email" ></i>
<input type="email" placeholder="email" class="text-name" name="email">
</div>
<div class="input-name">
<i class="fa fa-location-arrow location" ></i>
<input type="text" placeholder="your city" class="text-name" name="address">
</div>
<div class="input-name">
<i class="fa fa-phone number" ></i>
<input type="phone number" placeholder="phone number" class="text-name" name="phone">
</div>
<div class="input-name">
<h3>Message</h3> <br>
<textarea name="message" id="" rows="4" class="message" name="message"></textarea>
</div>
<div class="input-name">
<input type="checkbox" id="cb" class="check-button">
<label for="cb" class="check" >I Accept the terms and conditions</label>
</div>
<div class="input-name">
<input type="submit" class="button" value="Submit" name="submit">
</div>
</form>
</div>
</div>
</main>
<footer>
</footer>
</body>
</html>