-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
54 lines (53 loc) · 2.54 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
<!DOCTYPE html>
<html>
<head>
<title>Contact</title>
<meta name="viewport" content="width=600px, initial-scale=1">
<link rel="stylesheet" href="css/contactstyle.css">
<script src="jquery-3.6.0.min.js"></script>
</head>
<body>
<header>
<h1 id="title">VehicleDealings</h1>
<img src=images/vintage-car-png.png id="car">
</header>
<nav>
<ul id="menu">
<li><a href="index.html">Home</a></li>
<li><a href="Gallery.html">Gallery</a></li>
<li><a href="products.html">Products</a></li>
<li><a href="contact.html">Contact Us</a></li>
</ul>
<button class="nav">Show/Hide Menu</button>
</nav>
<section id="contact">
<h3>Contact Us</h3>
<p id="tex">If you have any questions, please contact us using the form below.</p>
<div id="container">
<form action="[email protected]" method="post" id="form">
<label for="first_name" id="fn">First Name:</label>
<input type="text" name="first_name" id="fname" placeholder="Please enter your name">
<label for="email" id="em">E-mail:</label>
<input type="email" name="ema" id="email" placeholder="Please enter your e-mail!">
<label for="phone" id="ph">Phone Number (optional):</label>
<input type="text" name="phone" id="pho" placeholder="Please enter your phone number">
<label for="message" id="mesa">Message:</label>
<textarea id="messa" placeholder="Please enter your message!"> </textarea>
<input type="submit" id="submit" value="Send">
</form>
</div>
</section>
<section id="second">
<p id="con">In need to contact us physically or need a call?</p>
<p id="inf">You can contact us at this location and phone number:</p>
<p id="address">Address: Belt Valleta, Qormi, VD18943</p>
<p id="phone">Phone : +356 7931 9067</p>
<p id="time">available from 8am to 11pm every day!</p>
<p id="soon">We hope that we can meet you there! We will try our best to help out!</p>
</section>
<footer>
<p id="copy">© Copyright 2022 - VehicleDealings</p>
</footer>
<script src="JavaScript.js"></script>
</body>
</html>