-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcontact.html
125 lines (107 loc) · 5.08 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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
<!DOCTYPE html>
<html lang="auto" dir="ltr">
<head>
<meta charset="utf-8">
<title>EL HAJJAM Topographie</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style_contact.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.4.1/jquery.min.js" charset="utf-8"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.1/css/all.min.css">
</head>
<header>
<div class="inner-width">
<a href="accueil.html" class="logo"><img src="logo.png" alt="EL HAJJAM Topographie"></a>
<i class="menu-toggle-btn fas fa-bars"></i>
<nav class="navigation-menu">
<a href="accueil.html"><i class="fas fa-home home"></i> Accueil </a>
<a href="presentaion.html"><i class="fas fa-align-left about"></i> Presentation </a>
<a href="realisation.html"><i class="fab fa-buffer works"></i> Réalisations </a>
<a href="mon_compte.html"><i class="fas fa-users team"></i> Mon Compte </a>
<a href="contact.html"><i class="fas fa-headset contact"></i> Contact </a>
</nav>
</div>
</header>
<script type="text/javascript">
$(".menu-toggle-btn").click(function(){
$(this).toggleClass("fa-times");
$(".navigation-menu").toggleClass("active");
});
</script>
<body>
<section id="contact">
<h1 class="section-header">Contactez-nous</h1>
<!-- Left contact page -->
<div class="contact-form">
<div class="header1">
</div>
<div class="container">
<form class="Contact" action="contact.html" method="post">
<input type="text" placeholder="Nom et Prénom" name="">
<input type="text" placeholder="E-mail" name="">
<input type="text" placeholder="Numéro de téléphone" name="">
<textarea type="text" class="textm" placeholder="Message" ></textarea>
<input class="btn" name="" type="button" value="envoyer" />
</form>
</div>
</div>
</div>
<!-- Left contact page -->
<div class="direct-contact-container">
<ul class="contact-list">
<li class="list-item"><i class="fa fa-phone fa-2x"><span class="contact-text phone"><a href="tel:(+212)661960089" title="Give me a call">(+212)661960089</a></span></i></li>
<li class="list-item"><i class="fa fa-phone fa-2x"><span class="contact-text phone"><a href="tel:(+212)658542008" title="Give me a call">(+212)658542008</a></span></i></li>
<li class="list-item"><i class="fa fa-envelope fa-2x"><span class="contact-text gmail"><a href="mailto:#" title="Send me an email">[email protected]</a></span></i></li>
<li class="list-item"><i class="fa fa-map-marker fa-2x"><span class="contact-text place">AV ARABIE SAOUDITE (AHLAN),RES EL AZIZIYA N 84 TANGER</span></i></li>
<iframe src="https://www.google.com/maps/embed?pb=!1m14!1m8!1m3!1d12952.957054805336!2d-5.8345357!3d35.7449235!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x0%3A0x4c6fd97585a19e5d!2ssociet%C3%A9%20ELHAJJAM%20TOPOGRAPHIE!5e0!3m2!1sfr!2stn!4v1660050119997!5m2!1sfr!2stn" width="500" height="400" style="border: 1px;;" allowfullscreen="" loading="lazy" referrerpolicy="no-referrer-when-downgrade"></iframe>
</ul>
</div>
</div>
</section>
</body>
<footer>
<div class="contenu-footer">
<div class="bloc footer-service">
<h3> Accueil </h3>
<ul class="liste-accueil">
<li> <a href="accueil.html">accueil</a></li>
<li> <a href="presentaion.html">Presentation</a></li>
<li> <a href="realisation.html">realisation</a></li>
<li> <a href="mon_compte.html">mon compte</a></li>
<li> <a href="contact.html">contact</a></li>
</ul>
</div>
<div class="bloc footer-contact">
<h3> Restons en contact</h3>
<p>✆ (+212)661960089</p>
<p>✆ (+212)658542008</p>
<p>📍 N 84, Res EL Aziziya, Av. Arabie Saoudite, Tanger, Maroc</p>
</div>
<div class="bloc footer-media">
<h3> Nos réseaux</h3>
<div class="wrapper">
<div class="button">
<div class="icon">
<i class="fab fa-facebook-f" ></i>
</div>
<span> <a href="https://web.facebook.com/ElHajjam-Topographie-102566978872736"> Facebook </a></span>
</div>
<div class="button">
<div class="icon">
<i class="fab fa-twitter"></i>
</div>
<span> <a href=""> Twitter</a> </span>
</div>
<div class="button">
<div class="icon">
<i class="fab fa-linkedin"> </i>
</div>
<span> <a href="https://www.linkedin.com/company/ste-elhajjam-topographie-sarlau/"> linkedin </a></span>
</div>
<img src="logo.jpg" alt="EL HAJJAM Topographie">
</div>
</div>
</footer>
</html>
</body>
</html>