-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
202 lines (197 loc) · 5.72 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
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<title>Contact</title>
<link rel="stylesheet" href="contact.css" />
<script
src="https://kit.fontawesome.com/abaf2d7c99.js"
crossorigin="anonymous"
></script>
<link
href="https://fonts.googleapis.com/css?family=Oswald&display=swap"
rel="stylesheet"
/>
<link
href="https://fonts.googleapis.com/css?family=Cormorant+Garamond&display=swap"
rel="stylesheet"
/>
<link
href="https://fonts.googleapis.com/css?family=Baloo+Thambi+2&display=swap"
rel="stylesheet"
/>
<script src="main.js" defer></script>
</head>
<body>
<!-- NavBar -->
<nav class="navbar">
<!-- NavBar__logo -->
<div class="navbar__logo">
<i class="fas fa-blog"></i>
<a href="index.html" class="navbar__name">IGY MUSIC</a>
</div>
<!-- NavBar__menu -->
<ul class="navbar__menu">
<a href="">
<li>Info</li>
</a>
<a href="">
<li>Music</li>
</a>
<a href="">
<li>Project</li>
</a>
<a href="contact.html">
<li>Contact</li>
</a>
</ul>
<!-- NavBar__toggleBtn -->
<a href="#" class="navbar__toggleBtn"><i class="fas fa-bars"></i></a>
</nav>
<!-- Main_Contents -->
<main class="container">
<header class="header">
<h1 id="header__title">Thanks for visit!</h1>
<p id="header__description">
please do not hesitate to contact me if you want to.
</p>
</header>
<form>
<div class="form-group form-control">
<label for="name">Name</label>
<input
type="text"
name="name"
class="input-box"
placeholder="Enter your name"
required
/>
</div>
<div class="form-group form-control">
<label for="name">Email</label>
<input
type="email"
name="email"
class="input-box"
placeholder="Enter your email"
required
/>
</div>
<div class="form-group form-control">
<label for="name">Phone</label>
<input
type="number"
name="phone"
class="input-box"
placeholder="Enter your phone number"
required
/>
</div>
<div class="form-group" id="custom-select">
<p>Which option best describes your current role?</p>
<select name="role" id="dropdown" class="input-box" required>
<option disabled selected value>Select current role</option>
<option value="student">Student</option>
<option value="job">Full Time Job</option>
<option value="learner">Full Time Learner</option>
<option value="preferNo">Prefer Not To Say</option>
<option value="other">Other</option>
</select>
</div>
<div class="form-group" id="radio">
<p>
How much are you satisfied with my work?
<span class="clue">(website, music, etc.)</span>
</p>
<label
><input
name="user-satisfaction"
type="radio"
class="input-radio"
value="Good"
checked
/>Good</label
>
<label
><input
name="user-satisfaction"
type="radio"
class="input-radio"
value="Bad"
/>Bad</label
>
<label
><input
name="user-satisfaction"
type="radio"
class="input-radio"
value="dontKnow"
/>I don't know</label
>
</div>
<div class="form-group" id="check">
<p>
Which one do you want me to do exactly?
<span class="clue">(Check all that apply)</span>
</p>
<label for=""
><input
name="prefer"
value="interview"
type="checkbox"
class="input-checkbox"
/>Interview</label
>
<label for=""
><input
name="prefer"
value="tuition"
type="checkbox"
class="input-checkbox"
/>Tuition</label
>
<label for=""
><input
name="prefer"
value="collab"
type="checkbox"
class="input-checkbox"
/>Collaboration</label
>
</div>
<div class="form-group">
<p>Any comments or things you would like to ask?</p>
<textarea
name="comment"
id="comments"
placeholder="Enter your comment here.."
></textarea>
</div>
<div class="form-group">
<button type="submit" id="submit" class="submit-button">
Submit
</button>
</div>
</form>
<!-- footer -->
<footer class="footer">
<!-- NavBar__icons -->
<ul class="footer__icons">
<li>
<a href=""><i class="fab fa-twitter"></i></a>
</li>
<li>
<a
href="https://www.youtube.com/channel/UCqhK1CTroBgMqEXBWy7-Nbg?view_as=subscriber"
target="_blank"
><i class="fab fa-youtube"></i
></a>
</li>
<li>Email : mkitigy@gmail.com<br />010 - 3262 - 2247</li>
</ul>
</footer>
</main>
</body>
</html>