-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
94 lines (82 loc) · 3.41 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
84
85
86
87
88
89
90
91
92
93
94
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Contact Rent it</title>
<meta name="description" content="contact us of you have any question about our Vehicles">
<link rel="canonical" href="rentit.com/contact.html">
<link rel="stylesheet" href="contact.css">
<style>
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
</style>
</head>
<body>
<nav>
<span><img src="icons/rent it.png"alt="rent it logo"></span>
<ul id="navv">
<a href="index.html">Home</a>
<a href="gallery.html">Gallery</a>
<a href="reservation.html">Reservation</a>
<a href="contact.html">Contact us</a>
</ul>
<div id="close" onclick="closee()">X</div>
<div class="burger" id="open" onclick="openn(id)">
<div></div>
<div></div>
<div></div>
</div>
</nav>
<div id="inputs-container">
<h1>Contact us</h1>
<label>Name:</label>
<input type="text" id="user" placeholder="insert your name">
<label>Email:</label>
<input type="text" id="email" placeholder="insert your email">
<label>Subject:</label>
<input type="text" id="subject" placeholder="insert your email">
<label>Message:</label>
<textarea name="" id="message" placeholder="insert your email" cols="30" rows="10"></textarea>
<button onclick="submit_it()" id="send">Send</button>
</div>
<div id="alert-it">
<div id="popup">
<p><span>Name: </span><span id="alert-name">Aypub</span></p>
<p><span>Email: </span><span id="alert-email">[email protected]</span></p>
<p><span>Subject: </span><span id="alert-subject">about your courses</span></p>
<p><span>Message: </span><span id="alert-message">hi could jjghggjhgjhjjjjjjjjjjgjggjgjgjg</span></p>
<button id="alert-ok" onclick="hide_alert()">ok</button>
</div>
</div>
<footer>
<div id="footer">
<div class="first">
<ul id="links">
<a href="index.html">Home</a>
<a href="gallery.html">Gallery</a>
<a href="reservation.html">Reservation</a>
<a href="contact.html">Contact us</a>
</ul>
</div>
<div id="footer-content">
<p>[email protected]</p>
<p>+212620814793209283</p>
<p>boulevard Zerktoni 1293 Safi Morocco</p>
<p>View on map</p>
</div>
<div id="icons">
<img src="icons/instagram.svg">
<img src="icons/twitter.svg">
<img src="icons/facebook.svg">
<img src="icons/linkedin.svg">
</div>
</div>
<div id="copyright">
<p> © 2021 Trustpilot, Inc. All rights reserved. </p>
</div>
</footer>
<script src="contact.js"></script>
</body>
</html>