-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmail.html
57 lines (50 loc) · 2.12 KB
/
mail.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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" type="text/css" href="css/conf.css">
</head>
<body>
<div class="container">
<div class="container">
<a href="index.html"> <button title="Home" type = "button" class = "btn btn-primary">Home page</button></a>
<h1>Share your opinion with us</h1>
<h4>We appreciate every feedback we receive. Feel free to write whatever you want. We check every message ;)</h4>
<p><a href="mailto:[email protected]"><b>Send email</b></a> (link)</p>
<form class = "form-horizontal" role = "form">
<div class = "form-group">
<label for = "firstname" class = "col-sm-2 control-label"><b>Name</b></label>
<div class = "col-sm-10">
<input type = "text" class = "form-control" id = "firstname" placeholder = "Enter Your Name">
</div>
</div>
<div class = "form-group">
<label for = "lastname" class = "col-sm-2 control-label"><b>Email</b>
</label>
<div class = "col-sm-10">
<input type = "text" class = "form-control" id = "lastname" placeholder = "Enter Your Email">
</div>
</div>
<div class = "form-group">
<label for = "lastname" class = "col-sm-2 control-label"><b>Comment</b></label>
<div class = "col-sm-10">
<input type = "text" class = "form-control" id = "lastname" placeholder = "Enter Comment">
</div>
</div>
<div class = "form-group">
<div class = "col-sm-offset-2 col-sm-10">
<button type = "submit" class = "btn btn-success"">Send</button>
</div>
</div>
</form>
</div>
<footer class="page-footer font-small blue">
<div class="footer-copyright text-center py-3">© 2018 Copyright: Ziemowit & Starosta</div>
</footer>
<script src="js/jquerry.min.js"></script>
<script src="js/popper.min.js"></script>
<script src="js/bootstrap.min.js"></script>
</body>
</html>