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/checkout.html

92 lines
No EOL
3.2 KiB
HTML

<!DOCTYPE html>
<html lang="fr" xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta charset="utf-8" />
<title>Kyflo</title>
<link href="https://fonts.googleapis.com/css?family=Roboto&display=swap" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="css.css">
</head>
<body id="produit">
<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>
<a id="loupe" href="search_result.html">GO</a>
<input type="text" placeholder="Rechercher sur tout le site">
</div>
</nav>
<button id="hautPage" onclick="window.location.href='#nav'"><img src="Images/arrow.png" alt></button>
<div id="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="number" value="2"></td><td>500 €</td>
</tr>
<tr>
<td>Nao</td><td><input type="number" value="1"></td><td>5 000€</td>
</tr>
<tr>
<td id="total" COLSPAN=3>TOTAL : 6 000€</td>
</tr>
</table>
<div id="livraison">
<h1>Coordonnées de livraison :</h1>
<form action="commande.html">
<h1>Nom et prénom :</h1>
<input type="text" required>
<h1>Adresse ligne 1 :</h1>
<input type="text" placeholder="Rue, voie, boite postale, nom de société" required>
<h1>Adresse ligne 2 :</h1>
<input type="text" placeholder="Batiment, Etage, Lieu-Dit">
<h1>Ville :</h1>
<input type="text" required>
<h1>État / Région / Canton :</h1>
<input type="text" required>
<h1>Code postal :</h1>
<input type="text" required>
<h1>Numéro de téléphone :</h1>
<input type="tel" required>
<h1 id="valider">Valider:</h1>
<input type="submit" value="Payer">
</form>
</div>
</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>
</body>
</html>