-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdevis.html
126 lines (115 loc) · 6.5 KB
/
devis.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
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
124
125
126
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
integrity="sha384-TX8t27EcRE3e/ihU7zmQxVncDAy5uIKz4rEkgIXeMed4M0jlfIDPvg6uqKI2xXr2" crossorigin="anonymous">
<link rel="stylesheet" href="styles.css">
<title>Demande de devis</title>
</head>
<body>
<header class="sticky-top">
<nav class="navbar navbar-expand-lg navbar-dark">
<a class="navbar-brand" href="index.html">
<img src="logo/logo.svg" width="200" height="70" class="d-inline-block" alt="logo"
loading="lazy">
</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarNav"
aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNav">
<ul class="navbar-nav">
<li class="nav-item">
<a class="nav-link" href="catalogue.html">Catalogue</a>
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="team.html" id="navbarDropdown" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
Equipe
</a>
<div class="dropdown-menu" aria-labelledby="navbarDropdown">
<a class="dropdown-item" href="team.html">Team</a>
<div class="dropdown-divider"></div>
<a class="dropdown-item" href="CV1.html">Alexis Cosentino</a>
<a class="dropdown-item" href="CV2.html">Anthony Perriolat</a>
<a class="dropdown-item" href="CV3.html">Pierrick Martinet</a>
<a class="dropdown-item" href="CV4.html">Steve Botella</a>
</div>
</li>
<li class="nav-item">
<a class="nav-link" href="contact.html" tabindex="-1" aria-disabled="true">Contact</a>
</li>
</ul>
</div>
</nav>
</header>
<main class="container-fluid mt-5 mb-5">
<form action="https://httpbin.org/post" method="POST">
<h1 class="text-center mb-5">Demande de Devis</h1>
<div class="mb-3 row col-lg-5 col-sm-5 mx-auto">
<label for="e-mail" class="form-label">Adresse e-mail</label>
<input type="e-mail" class="form-control" id="e-mail" name="email" placeholder="Saisir e-mail" required>
</div>
<div class="mb-3 row col-lg-5 col-sm-5 mx-auto">
<div class="form-check">
<input class="form-check-input" type="radio" name="sexe" id="Mme" value="Mme" checked>
<label class="form-check-label1" for="Mme">
Mme
</label>
</div>
<div class="form-check ml-3">
<input class="form-check-input" type="radio" name="sexe" id="Mr" value="Mr">
<label class="form-check-label1" for="Mr">
Mr
</label>
</div>
</div>
<div class="mb-3 row col-lg-5 col-sm-5 mx-auto">
<label for="prenom-nom" class="form-label">Nom</label>
<input type="text" name="nom" class="form-control" id="prenom-nom" placeholder="Saisir Prénom Nom">
</div>
<div class="mb-3 form-group row col-lg-5 col-sm-5 mx-auto">
<label for="selection">Séléction de produit</label>
<select class="form-control" id="selection" name="candidats">
<option>Produit</option>
<option>Site Desktop</option>
<option>Site mobile responsive</option>
<option>Application mobile</option>
<option>Site E-commerce</option>
</select>
</div>
<div class="mb-3 row col-lg-5 col-sm-5 mx-auto">
<label for="texte" class="form-label">Décrivez nous votre projet</label>
<textarea class="form-control" id="texte" name="texte" rows="3"
placeholder="Saisir message" required></textarea>
</div>
<div class="mb-3 row col-lg-5 col-sm-5 mx-auto">
<input type="submit" value="Envoyer mail" class="btn btn-outline-secondary mx-auto my-2 bg-blue-perso">
</div>
</form>
</main>
<footer class="container-fluid">
<div class="row">
<div class="col-md-3 "><img src="logo/logo.svg" alt="" width="300" height="150">
</div>
<div class="col-md-6 d-flex justify-content-center align-items-end text-light">
Copyrights - Tout droits reservés
</div>
<div class="col-md-3 d-flex flex-column">
<a class="btn btn-outline-secondary mx-auto my-2 bg-blue-perso" href="contact.html" role="button">Nous contacter</a>
<iframe class="container-fluid" src="https://www.google.com/maps/embed?pb=!1m14!1m12!1m3!1d11296.393621053916!2d4.8894836999999995!3d44.94166745!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!5e0!3m2!1sfr!2sfr!4v1608019900366!5m2!1sfr!2sfr" style="border:0;" allowfullscreen="" aria-hidden="false" tabindex="0"></iframe>
</div>
</div>
</footer>
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js"
integrity="sha384-DfXdz2htPH0lsSSs5nCTpuj/zy4C+OGpamoFVy38MVBnE+IbbVYUew+OrCXaRkfj"
crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-ho+j7jyWK8fNQe+A12Hb8AhRq26LrZ/JpcUGGOn+Y7RsweNrtN/tE3MoK7ZeZDyx"
crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-ho+j7jyWK8fNQe+A12Hb8AhRq26LrZ/JpcUGGOn+Y7RsweNrtN/tE3MoK7ZeZDyx"
crossorigin="anonymous"></script>
</body>
</html>