1
0
Fork 0
This repository has been archived on 2024-02-17. You can view files and clone it, but cannot push or open issues or pull requests.
KyFlo/contact.html

74 lines
2.6 KiB
HTML
Raw Normal View History

2019-11-20 11:09:01 +01:00
<!DOCTYPE html>
<html lang="en" xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta charset="utf-8" />
<title>Kyflo</title>
<link rel="stylesheet" type="text/css" href="css.css">
2019-11-23 15:49:48 +01:00
<link href="https://fonts.googleapis.com/css?family=Roboto&display=swap" rel="stylesheet">
2019-11-20 11:09:01 +01:00
</head>
<body>
2019-11-23 15:49:48 +01:00
<nav id="nav">
<div class="topnav">
<a id ="kyflo" class="active" href="index.html">KyFlo</a>
<a id ="nous" href="nous.html">A propos</a>
<a id ="contactN" href="contact.html">Contact</a>
<a id ="panier" href="checkout.html"><img src="Images/cart.png" alt></a>
<input type="text" placeholder="Rechercher...">
</div>
</nav>
<button id="hautPage" onclick="window.location.href='#nav'"><img src="Images/arrow.png" alt></button>
<div id="content">
<h1>Nous contacter :</h1>
<form action="commentaire.html">
<h2>Nom et Prénom :</h2>
<input type="text" required>
<h2>Email :</h2>
<input type="text" required>
<h2>Question :</h2>
<input type="text" placeholder="Question, suggestion, remarque" required>
<h2 id="valider">Valider:</h2>
<input type="submit" value="Envoyer">
</form>
<h1>Nos réseaux sociaux :</h1>
<table id="reseaux">
<tr id="res">
<td><a href="#"><img src="Images/Icones/facebook.png" alt></a></td>
<td><a href="#"><img src="Images/Icones/twitter.png" alt></a></td>
<td><a href="#"><img src="Images/Icones/yt.png" alt></a></td>
<td><a href="#"><img src="Images/Icones/insta.png" alt></a></td>
</tr>
</table>
</div>
<footer>
<div id="acces">
<table>
<tbody>
<tr>
<th>Accès rapide</th><th id="line"></th><th>Une question ?</th>
</tr>
<tr>
<td><a href="index.html">Accueil</a></td>
<td><a href="index.html#slider">Nos Promotions</a></td>
<td></td>
</tr>
<tr>
<td><a href="index.html#produits">Nos Produits</a></td>
<td><a href="checkout.html">Votre panier</a></td>
<td id="contact"><button onclick="window.location.href='contact.html'" id="contactB">Nous contacter</button></td>
</tr>
</tbody>
</table>
</div>
</footer>
2019-11-20 11:09:01 +01:00
</body>
</html>