-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
122 lines (89 loc) · 3.09 KB
/
contact.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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
<!DOCTYPE html>
<html lang="en">
<head>
<title>contact</title>
<link rel="stylesheet" href="style.css">
<style>
form {
margin: 22px;
padding: 30px;
border: 2px solid brown;
border-radius: 12px;
}
#submit {
background-color: brown;
color: beige;
border: brown;
border-radius: 5px;
}
#reset {
background-color: brown;
color: beige;
border: brown;
border-radius: 5px;
}
#submit:hover {
background-color: rgb(76, 44, 13);
}
#reset:hover {
background-color: rgb(76, 44, 13);
}
</style>
</head>
<body>
<section class="header">
<ul>
<li><a href="contact.html" target="_blank">Contact Us</a></li>
<li><a href="products.html">Product</a></li>
<li><a href="index.html">Home</a></li>
</ul>
</section>
<h1>Contact Us</h1>
<form action="thankyou.html" method="get" target="_blank">
<label for="fname">First Name </label>
<input type="text" id="fname" name="fname" required>
<br><br>
<label for="lname">Last Name</label>
<input type="text" id="lname">
<br><br>
<label for="gender">Gender</label>
<input type="radio" name="gender" value="male">
<label for="male">Male</label>
<input type="radio" name="gender" value="female">
<label for="female">Female</label>
<br><br>
<label for="food">Select Your Item</label>
<select id="food">
<option value="cake">Cakes</option>
<option value="cookies">Cookies</option>
<option value="muffins">Muffins</option>
</select>
<br><br>
<label for="message">Do you have tell something? </label><br>
<textarea name="message" id="message" rows="1" cols="50" placeholder="type here..."></textarea>
<br><br>
<fieldset>
<legend>Feedback</legend>
<label for="fitem">What is your Favourite item: </label>
<input type="text" id="fitem" name="fitem"><br><br>
<label for="message">Give Us Your Feedback or Complain</label><br>
<textarea name="message" id="message" rows="5" cols="50" placeholder="Give your Feedback..."></textarea>
<br><br>
<label for="rate">Rate Our service</label>
<select name="rate" id="rate">
<option value="1-Poor">1-Poor</option>
<option value="2-fair">2-fair</option>
<option value="3-good">3-Good</option>
<option value="4-verygood">4-Very Good</option>
<option value="5-Excellent">5-Excellent</option>
</select>
</fieldset>
<br>
<input type="submit" value="submit" id="submit">
<input type="reset" value="reset" id="reset">
</form>
<footer>
<p>©2025 Pastry shop.All Rights Reserved</p>
</footer>
</body>
</html>