-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
115 lines (99 loc) · 3.8 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
<!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="https://fonts.googleapis.com/css2?family=Material+Symbols+Rounded:opsz,wght,FILL,[email protected],100..700,0..1,-50..200"
/>
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Material+Symbols+Rounded:opsz,wght,FILL,GRAD@24,400,0,0"
/>
<title>AR Agency</title>
<link rel="stylesheet" href="./assets/css/styles.css" />
</head>
<body class="background-content">
<header>
<button
onclick="location.href='index.html'"
class="text-button-icon-right"
>
<span class="material-symbols-rounded"> arrow_back </span>Back
</button>
</header>
<main>
<section class="card-large">
<h1 class="contact-header">Got questions?</h1>
<p class="body-secondary">
We appreciate your interest and will get back to you as soon as
possible!
</p>
<form>
<fieldset>
<legend>Title:</legend>
<div class="radio-group">
<input name="title" type="radio" id="mr" value="mr" />
<label for="mr">Mr</label>
<input name="title" type="radio" id="mrs" value="mrs" />
<label for="mrs">Mrs</label>
<input name="title" type="radio" id="ms" value="ms" />
<label for="ms">Ms</label>
<input name="title" type="radio" id="mx" value="mx" />
<label for="mx">Mx</label>
<input name="title" type="radio" id="other" value="other" />
<label for="other">Prefer not say</label>
</div>
</fieldset>
<div class="form-group">
<label for="first-name"
>First Name <span class="required-asterisk">*</span></label
>
<input type="text" id="first-name" required />
<label for="last-name"
>Last Name <span class="required-asterisk">*</span></label
>
<input type="text" id="last-name" required />
<label for="company"
>Company<span class="required-asterisk">*</span></label
>
<input type="text" id="company" />
<label for="email"
>Email address<span class="required-asterisk">*</span></label
>
<input type="email" id="email" required />
<label for="phone-number"
>Phone number<span class="required-asterisk">*</span></label
>
<input type="tel" id="phone-number" required />
<label for="question"
>Your question<span class="required-asterisk">*</span></label
>
<textarea id="question" required></textarea>
</div>
<input type="checkbox" id="checkbox" />
<label for="checkbox" class="checkbox-label"
>Cat cat moo moo lick ears lick paws. Sleeping in the box eat a
plant, kill a hand i hate cucumber pls dont throw it at me always
ensure to lay down</label
>
</form>
<button type="submit" class="contatined-button-accent">
<span class="material-symbols-rounded"> arrow_right_alt </span>Submit
</button>
</section>
</main>
<footer>
<p>
No copy right infringement was intended when creating this work ✌️.
Check out <a href="https://github.com/fac31/Agency_AR">our repo 👩💻🧑💻</a>
</p>
<p>
Say hi <a href="https://github.com/Angelica137">@Angelica</a> &
<a href="https://github.com/RGHANILOO">@Reza</a>.
</p>
</footer>
<script src="./asset/js/index.js"></script>
</body>
</html>