-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcommande.html
More file actions
123 lines (104 loc) · 5.29 KB
/
Copy pathcommande.html
File metadata and controls
123 lines (104 loc) · 5.29 KB
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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
<!DOCTYPE html>
<html>
<head>
<title>La Reine du Cake</title>
<meta charset="utf-8"/>
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="css/bootstrap.min.css">
<script src="js/jquery-3.3.1.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<link rel="stylesheet" href="index.css">
<style>
#formulaire{
padding:15px;
background-color:rgb(202, 68, 131);
height:300px;
width:800px;
border-radius:20px;
}
h3{
font-family:Lucida Calligraphy;
}
</style>
</head>
<body>
<section id="partie1">
<header>
<div class="container-fluid" id="titre">
<h1>La Reine du Cake</h1>
<img id="logo" src="image/log1.jpg" alt=""/>
<br><p>Votre Plaisir Notre Metier</p>
</div>
</header>
</section>
<section id="partie2">
<nav class="navbar navbar-inverse" id="nav">
<div class="container-fluid">
<div class="navbar-header">
<a id="projet" class="navbar-brand">Votre Plaisir Notre Metier</a>
</div>
<ul class="nav navbar-nav" id="menu">
<li><a href="index.html">ACCEUIL</a></li>
<li><a href="mariage.html">GATEAU DE MARIAGE</a></li>
<li class="active" ><a href="anniv.html">GATEAU D'ANNIVERSAIRE</a></li>
</ul>
</div>
</nav>
</section>
<section id="partie4">
<div>
<h1>COMMANDER UN GATEAU D'ANNIVERSAIRE</h1>
<form class="form container" id="formulaire" >
<div class="row" >
<div class="col-md-6" >
<input type="text" name="nom" placeholder="entrez votre nom et prenoms svp!!!" class="form-control" />
</div>
<div class="col-md-6" >
<input type="text" name="jour" placeholder="entrez la date de livraison(une semaine apres la commande) svp !!!" class="form-control" />
</div><br><br><br>
<div class="col-md-6" >
<input type="text" name="heure" placeholder="entrez l'heure de livraison" class="form-control" />
</div>
<div class="col-md-6" >
<input type="text" name="ville" placeholder="entrez votre ville de residense svp!!!" class="form-control" />
</div>
</div>
<h3><center>Etes vous sur de la commande?</center></h3>
<div class="row" >
<center>
<div class="col-md-6" >
<input type="submit" onclick="alert('votre commande est effectué, ;)merci!!! ')" class="btn btn-success" value="OUI !"/>
</div>
<div class="col-md-6" >
<input type="reset" onclick="alert('votre commande a été annulée à bientôt!!!')" class="btn btn-danger" value="NON !"/>
</div>
</center>
</div>
</form>
</div>
</section><br><br><br><br>
<section id="partie5">
<footer>
<div class="container-fluid footer" id="footer">
<fieldset><legend><center>CONTACTEZ-NOUS!</center></legend>
<div class="row" >
<div class="col-md-6">
<h4>Des questions</h4>
<a href="#">Nos Magasins</a><br>
<a href="#">Livraison</a><br>
<a href="#">Conditions Generale De Vente</a><br>
</div>
<div class="col-md-6">
<h4>contactez-nous</h4>
<a href="#"><span class="glyphicon g"></span>Facebook</a><br>
<a href="#"><span class=""></span>Twitter</a><br>
<a href="#"><span class=""></span>Youtube</a>
</div><br><br>
</fieldset>
</div>
</div>
</footer>
</section>
</body>
</html>