-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
67 lines (67 loc) · 2.3 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Contact-form</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<main>
<form>
<h2>Contact Us</h2>
<!-- first name -->
<section class="fullname-container">
<div>
<label for="first-name">First Name *</label>
<input class="input-group" type="text" id="first-name" />
</div>
<!-- last name -->
<div>
<label for="last-name">Last Name *</label>
<input class="input-group" type="text" id="last-name" />
</div>
</section>
<!-- email-address -->
<label for="Email">Email Address *</label>
<input class="input-group" type="text" id="Email" />
<!-- section-3 -->
<section class="query-type">
<div class="query-type-label">
<label>Query Type</label>
</div>
<!-- General and Support request -->
<div class="query-type-flex">
<div class="query-type-radio-input" id="general-enquiry-div">
<input type="radio" name="query" id="general-enquiry" class="query-type-radio" />
<label for="general-enquiry"> General Enquiry</label>
</div>
<div class="query-type-radio-input" id="support-request-div" >
<input type="radio" name="query" id="support-request" class="query-type-radio" />
<label for="support-request"> Support Request</label>
</div>
</div>
</section>
<section class="message">
<div class="message-label">
<label for="message">Message *</label>
</div>
<div>
<textarea name="" id="message" cols="42" rows="14"></textarea>
</div>
</section>
<section class="consent">
<div class="consent-checkbox">
<input type="checkbox" name="" id="consent" />
</div>
<div class="consent-label">
<label for="consent"
>I consent fo beign contacted by the team *</label
>
</div>
</section>
<button>Submit</button>
</form>
</main>
</body>
</html>