-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
43 lines (35 loc) · 1.62 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="contact.css">
</head>
<body>
<section id="contact">
<h2>Send Us a Message</h2>
<form id="survey-form">
<fieldset>
<label for="name">Name:</label>
<input type="text" id="name" name="name" placeholder="Enter your name" required>
<label for="email">Email:</label>
<input type="email" id="email" name="email" placeholder="Enter your email" required>
<label for="number">Phone:</label>
<input type="tel" id="number" name="number" placeholder="Enter your phone number" required>
<label for="dropdown">How can we help you?</label>
<select id="dropdown" name="option" required>
<option value="disabled selected">Select an option</option>
<option value="call">Call me back!</option>
<option value="order">Where is my order?</option>
<option value="data">I want to change my personal data</option>
<option value="other">Other</option>
</select>
<label for="comments">Please describe your request briefly:</label>
<textarea id="comments" name="comments" rows="4" cols="50"
placeholder="Enter your thoughts here"></textarea>
<button type="submit" id="submit">Submit</button>
</fieldset>
</form>
</section>
</body>
</html>