forked from Predator21X-bot/COVID-ZONE
-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
34 lines (29 loc) · 963 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Counsellor Contact</title>
<link rel="stylesheet" href="styles3.css">
</head>
<body>
<div class="wrapper">
<div class="title">
<h1>Contact Us</h1>
</div>
<div class="contact-form">
<div class="input-fields">
<input type="text" class="input" placeholder="Name">
<input type="text" class="input" placeholder="Email Address">
<input type="text" class="input" placeholder="Phone">
<input type="text" class="input" placeholder="Topic of Issue">
</div>
<div class="msg">
<textarea placeholder="Message (will be private b/w us)"></textarea>
<a href="thankyou.html" target="_blank">
<div class="btn">send</div>
</a>
</div>
</div>
</div>
</body>
</html>