-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathproduit.html
72 lines (57 loc) · 2.99 KB
/
produit.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
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="utf-8">
<!-- <meta name="viewport" content="width=device-width, initial-scale=1"> -->
<!-- Bootstrap CSS -->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-wEmeIV1mKuiNpC+IOBjI7aAzPcEZeedi5yW5f2yOq55WWLwNGmvvx4Um1vskeMj0" crossorigin="anonymous">
<script src="dist/produit.bundle.js"></script>
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.15.3/css/all.css" integrity="sha384-SZXxX4whJ79/gErwcOYf+zWLeJdY/qpuqC4cAa9rOGUstPomtqpuNWT9wdPEn2fk" crossorigin="anonymous">
<script src="https://code.jquery.com/jquery-3.6.0.min.js" integrity="sha256-/xUj+3OJU5yExlq6GSYGSHk7tPXikynS7ogEvDej/m4=" crossorigin="anonymous"></script>
<title>Site d'e-commerce</title>
</head>
<body>
<header>
<nav class="m-0 p-0 navbar navbar-light bg-light justify-content-between ">
<a class="navbar-brand mx-2" href="Index.html"><img src="./src/Images/logo_orinoco.png" id="Logo_Orinoco" /></a>
<div class="row ">
<div class="col-9">
<input class="form-control input-lg" type="Recherche" placeholder="Recherche" aria-label="Recherche">
</div>
<div class="col-1">
<button class="btn btn-outline-success my-2 my-sm-0" type="submit">Recherche</button>
</div>
</div>
<div><a class="btn btn-outline-success mx-3 my-2 my-sm-0" href="validation.html"><i
class="fas fa-shopping-cart"></i> Panier</a></div>
</nav>
<div class="Header_fond">
</div>
</header>
<div id="content" class="d-flex flex-lg-row flex-column">
<main class="mx-auto my-5">
<div id="photo"><img></img></div>
<div id="titre"><h1 class="text-center"></h1></div>
<div id="description"><p class="px-3"></p></div>
<div id="option" class="px-3 my-auto"><select class="form-select " aria-label="Personnalisation"></select></div>
<div id="prix" class="text-center "><strong ></strong></div>
<div id="bouton" class="mx-0"><button type="button" class="btn btn-primary btn-panier w-100 h-100">Ajouter au panier</button></div>
</main>
<aside id="panier" class=" my-5 mx-3 text-center bg-dark">
<h2 class="py-1">PANIER</h2>
<ul id="panierliste" class="list-group">
</ul>
<div class="aside_footer w-100 " >
<button id="bouton_valider" class="btn btn-secondary w-100 py-4">Valider votre panier</button>
<button id="bouton_vider" class="btn btn-primary w-100 py-4">Vider le panier</button>
</div>
</aside>
</div>
<footer class="py-5 white bg-secondary text-center ">
<a href="#" class="text-white mx-2">Conditions générales de vente</a>
<a href="#" class="text-white mx-2">Qui sommes nous ?</a>
<a href="#" class="text-white mx-2">Nous contacter</a>
</footer>
</body>
</html>