This repository has been archived by the owner on Oct 9, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
83 lines (75 loc) · 2.48 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="shortcut icon" href="assets/img/logo.png">
<link rel="stylesheet" href="assets/css/main.css">
<title>MPL | Contact us!</title>
<link rel="stylesheet" href="assets/css/index.css">
<link rel="stylesheet" href="assets/css/contact&settings.css">
<script src="assets/js/contact.js"></script>
<script src="assets/js/main.js"></script>
<script src="assets/js/lr.js"></script>
</head>
<body>
<nav id="navbar"></nav>
<div class="container">
<div class="c-title">
<h1>
Contact us!
</h1>
</div>
<div class="c-content">
<h2>
Our contact information
</h2>
<hr>
<div class="info-div">
<p>
<b>Email:</b> [email protected]
</p>
<p>
<b>Phone number:</b> +351 823 231 821
</p>
</div>
<h2>
Send us a message
</h2>
<hr>
<form action="mailto:[email protected]" method="post" enctype="text/plain">
<div class="input-group">
<label>
Your email: *
</label>
<br>
<input type="email" name="u_email" placeholder="Your email" required>
</div>
<div class="input-group">
<label>
Your name: *
</label>
<br>
<input type="text" name="u_name" placeholder="Your name" required>
</div>
<div class="input-group">
<label>
Message:
</label>
<br>
<textarea name="u_msg" placeholder="Write you message here!" required></textarea>
</div>
<div class="submit-btn-div">
<input class="submit-btn" type="submit" value="Send message">
</div>
</form>
</div>
<div class="margin-auto half-width text-center">
<button id="back_btn" class="back-btn">
Go Back
</button>
</div>
</div>
<footer id="footer"></footer>
</body>
</html>