-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
61 lines (51 loc) · 2.46 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
<!--
Author: Emil Soleymani
Last Modification: 2023-11-08
-->
<!DOCTYPE html>
<html>
<head>
<title>CarDex | Contact</title>
<link rel="stylesheet" type="text/css" href="css/global.css">
<link rel="stylesheet" type="text/css" href="css/contact.css">
<meta charset="utf-8">
</head>
<body>
<div class="header-wrapper">
<img class="header-logo" src="imgs/header_logo.png" alt="CarDex Logo">
<nav class="header-nav-wrapper">
<ul>
<li><a href="home.html">Home</a></li>
<li><a href="manufacturers.html">Manufacturers</a></li>
<li><a href="about_us.html">About Us</a></li>
<li><a id="selected" contact.html">Contact</a></li>
</ul>
</nav>
</div>
<div class="contact-form-wrapper">
<h1 class="contact-form-title">Contact Us</h1>
<form action="mailto:[email protected]" method="post" enctype="text/plain" class="contact-form">
<input type="text" name="name" placeholder="Name" class="contact-form-input">
<input type="email" name="email" placeholder="Email" class="contact-form-input">
<textarea name="message" placeholder="Message" class="contact-form-input" autocomplete="off"></textarea>
<input type="submit" value="Send" class="contact-form-submit">
</form>
</div>
<div class="footer-space-global"></div>
<div class="footer-wrapper">
<p class="footer-copyright"><span>©</span> 2023 CarDex</p>
<div class="footer-links">
<div class="footer-links-left">
<a href="privacy.html">Privacy Policy</a>
<a href="terms-conditions.html">Terms and Conditions</a>
</div>
<div class="footer-social">
<!-- Let's imagine these are links to some official accounts -->
<a href="https://www.instagram.com"><img class="footer-social-img" src="imgs/icons/instagram.png" alt="Instagram"></a>
<a href="https://www.facebook.com"><img class="footer-social-img" src="imgs/icons/facebook.png" alt="Facebook"></a>
<a href="https://www.youtube.com"><img class="footer-social-img" src="imgs/icons/youtube.png" alt="Youtube"></a>
</div>
</div>
</div>
</body>
</html>