forked from akshitagupta15june/PetMe
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
46 lines (45 loc) · 1.18 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Document</title>
<link rel="stylesheet" href="contact_style.css" />
</head>
<body>
<div class="container">
<h1>Contact Us</h1>
<h5>
Any issue! Fill the form bellow and our team will contact you shortly.
</h5>
<form action="">
<div class="form-group">
<input
type="text"
autocomplete="off"
name="text"
class="input"
placeholder="Enter Name"
/>
</div>
<div class="form-group">
<input class="input" placeholder="Email" type="email" />
</div>
<div class="form-group">
<textarea
class="input"
cols=""
rows="5"
placeholder="Enter Your Massage"
></textarea>
</div>
<div class="button">
<button class="btn">
<span class="btn-text-one">Submit</span>
<span class="btn-text-two">Great!</span>
</button>
</div>
</form>
</div>
</body>
</html>