-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
45 lines (40 loc) · 1.36 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>RegistrationForm_v7 by Colorlib</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- MATERIAL DESIGN ICONIC FONT -->
<link rel="stylesheet" href="fonts/material-design-iconic-font/css/material-design-iconic-font.min.css">
<!-- STYLE CSS -->
<link rel="stylesheet" href="contact.css">
</head>
<body>
<div class="wrapper">
<div class="inner">
<form action="">
<h3>Contact Us</h3>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore.</p>
<label class="form-group">
<input type="text" class="form-control" required>
<span>Your Name</span>
<span class="border"></span>
</label>
<label class="form-group">
<input type="text" class="form-control" required>
<span for="">Your Mail</span>
<span class="border"></span>
</label>
<label class="form-group" >
<textarea name="" id="" class="form-control" required></textarea>
<span for="">Your Message</span>
<span class="border"></span>
</label>
<button>Submit
<i class="zmdi zmdi-arrow-right"></i>
</button>
</form>
</div>
</div>
</body><!-- This templates was made by Colorlib (https://colorlib.com) -->
</html>