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/Assets/Pages/Autres/checkout.html
KEZEL BENOIT p1907091 0cde11c160 fopoter
2019-12-16 09:52:03 +01:00

119 lines
No EOL
3.9 KiB
HTML

<!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">
<link rel="stylesheet" type="text/css" href="../../resp.css">
<link href="https://fonts.googleapis.com/css?family=Roboto&display=swap" rel="stylesheet">
</head>
<body>
<header class="header">
<a href="#" class="logo">KYFLO</a>
<input class="menu-btn" type="checkbox" id="menu-btn"/>
<label class="menu-icon" for="menu-btn"><span class="nav-icon"></span></label>
<ul class="menu">
<li><input type="text" placeholder="Rechercher..."></li>
<li><a href="#nous">A propos</a></li>
<li><a href="#contact">Contact</a></li>
<li><a href="Assets/Pages/Autres/checkout.html">Panier</a></li>
</ul>
</header>
<div class="title">
<h1>Votre panier :</h1>
</div>
<div class="content">
<table id="basket">
<tr id="cent">
<th>Nom Produit</th>
<th>Quantité</th>
<th>Prix</th>
</tr>
<tr>
<td>R2D2</td>
<td><input type="text" value="2"></td>
<td>500 €</td>
</tr>
<tr>
<td>Nao</td>
<td><input type="text" value="1"></td>
<td>5 000€</td>
</tr>
<tr>
<td id="total" COLSPAN=3>TOTAL : 6 000€</td>
</tr>
</table>
</div>
<div class="title">
<h1>Livraison :</h1>
</div>
<div class="content">
<div id="livraison">
<h1>Coordonnées de livraison :</h1>
<form action="commande.html">
<table>
<tr>
<td>Nom et prénom :<input type="text" required></td><td>Ville :<input type="text" required></td>
</tr>
<tr>
<td>Adresse ligne 1 :<input type="text" placeholder="Rue, voie, boite postale, nom de société" required></td><td>Code postal :<input type="text" required></td>
</tr>
<tr>
<td>Adresse ligne 2 :<input type="text" placeholder="Batiment, Etage, Lieu-Dit"></td><td>Numéro de téléphone :<input type="tel" required></td>
</tr>
</table>
<h2>Valider:</h2>
<input type="submit" value="Payer">
</form>
</div>
</div>
<footer>
<table>
<tbody>
<tr>
<th>Accès rapide</th><th></th>
</tr>
<tr>
<td><a href="#">Accueil</a></td>
<td><a href="#slider">Nos Promotions</a></td>
</tr>
<tr>
<td><a href="#produits">Nos Produits</a></td>
<td><a href="Assets/Pages/Autres/checkout.html">Votre panier</a></td>
</tr>
</tbody>
</table>
<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>
</footer>
</body>
</html>