-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
58 lines (56 loc) · 2.02 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Contact us</title>
<link rel="stylesheet" href="contact.css">
</head>
<body>
<body background="images/index.jpg">
<nav>
<li><a href="index1.html">Home</a></li>
</nav>
<div class="contactus-form-container">
<div class="container">
<h1 class="contactus-heading">Contact us</h1>
<h3 class="contactus-sub-heading">
Questions, Thoughts, or just want to say hello?
</h3>
<div class="contactus-form-container">
<form action="">
<div class="formfield-container">
<input class="formfield"
typ="text"
name="name"
id=""
placeholder="Enter your name"/><br>
<input class="formfield"
typ="email"
name="email"
id=""
placeholder="Enter your email address"/><br>
<input class="formfield"
typ="text"
name="subject"
id=""
placeholder="Enter your subject"/><br>
<textarea name="message"
id=""
cols="30"
rows="10"
class="formfield formfield-textarea"
placeholder="Enter your message"/>
</textarea>
</div>
<div>
<button type="submit" class="btn-pink" id="submit-btn">
Send Message<i class="fa-sharp fa-light fa-paper-plane"></i>
</button>
</div>
</form>
</div>
</div>
</div>
</body>
</html>