-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.HTML
92 lines (90 loc) · 4.44 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
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="utf-8">
<title>PhoneSwap - Contact</title>
<link rel="stylesheet" href="style.css">
<!--Font du site-->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@300;400;600;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta2/css/all.min.css">
<!--Logo Flavicon dans l'onglet-->
<link rel="apple-touch-icon" sizes="180x180" href="images/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="images/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="images/favicon-16x16.png">
<link rel="manifest" href="images/site.webmanifest">
</head>
<body>
<!--Header du site-->
<div class="container">
<div class="navbar">
<div class="logo">
<a href="main.HTML"><img src="images/logo.png" width="130px"></a>
</div>
<nav>
<ul>
<li><a href="main.HTML">Menu</a></li>
<li><a href="produits.HTML">Produits</a></li>
<li><a href="apropos.HTML">A propos</a></li>
<li><a href="contact.HTML">Contact</a></li>
</ul>
</nav>
<img src="images/shopping.png" width="30px" height="30px">
</div>
</div>
<!--Contact-->
<div class="box-container">
<div class="contact-box">
<div class="left"></div>
<div class="right">
<h2 class="contactez">Contactez-nous !</h2>
<input type="text" class="field" placeholder="Nom et Prénom">
<input type="email" class="field" placeholder="Email">
<input type="text" class="field" placeholder="Téléphone">
<textarea class="field area" placeholder="Votre message"></textarea>
<button class="bouton-contact">Envoyer</button>
</div>
</div>
</div>
<!--Footer du site-->
<div class="footer">
<div class="container">
<div class="footer-row">
<div class="footer-col-1">
<h3>Télécharger notre App !</h3>
<p>Télécharger sur Android et IOS.</p>
<div class="app-logo">
<a href="https://www.apple.com/fr/app-store/"><img src="images/appstore.png"></a>
<a href="https://play.google.com/store?hl=fr"><img src="images/googleplay.png"></a>
</div>
</div>
<div class="footer-col-2">
<a href="main.HTML"><img src="images/logo-blanc.png"></a>
<p>Nous proposons des produits qualitatifs à des prix attractifs.</p>
</div>
<div class="footer-col-3">
<h3>Nos réseaux</h3>
<ul>
<li><a href="https://facebook.com">Facebook</a></li>
<li><a href="https://twitter.com">Twitter</a></li>
<li><a href="https://instagram.com">Instagram</a></li>
<li><a href="https://youtube.com">YouTube</a></li>
</ul>
</div>
<div class="footer-col-4">
<h3>Nos réseaux</h3>
<ul>
<li><a href="main.HTML">Menu</a></li>
<li><a href="produits.HTML">Produits</a></li>
<li><a href="apropos.HTML">A propos</a></li>
<li><a href="contact.HTML">Contact</a></li>
</ul>
</div>
</div>
<hr>
<p class="copyright">Copyrights 2021 - Tous droits réservés (c'est faux, vous avez tout les droits)</p>
</div>
</div>
</body>
</html>