-
Notifications
You must be signed in to change notification settings - Fork 0
/
contactus.html
41 lines (30 loc) · 1.3 KB
/
contactus.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Contact us</title>
<link rel="stylesheet" href="contactus.css">
<link rel="preconnect" href="https://fonts.googleapis.com"><link rel="preconnect" href="https://fonts.gstatic.com" crossorigin><link href="https://fonts.googleapis.com/css2?family=Baskervville&display=swap" rel="stylesheet"></head>
<body>
<div class="contactus">
<div class="left">
<img src="images/bg2.png" alt="">
</div>
<div class="right">
<div class="content">
<h1>Contact Us</h1>
<p>Need to get in touch with us? Either fill out the form below with your inquiry or send a mail to [email protected]</p>
<div class="text-field">
<form></form>
<input type="text" id="a" placeholder="Enter your name" required>
<input type="text" id="b" placeholder="Enter your name" required>
<input type="email" id="c" placeholder="Email" required>
<input type="text" id="d" placeholder="Message" required>
</div>
<input id="submit" type="submit" value="Submit">
</div>
</div>
</div>
<script src="test.js"></script>
</body>
</html>