forked from nono-web/Bto-Beach-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
105 lines (88 loc) · 3.94 KB
/
contact.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<link rel="shortcut icon" href="https://i.ibb.co/v4M1KJd/btob.jpg" />
<title>Beach to Beach</title>
</head>
<body>
<nav class="navbar">
<img class="logo-btob" src="https://i.ibb.co/PtCXdz2/btob1.jpg" alt="logo"/>
<ul class="nav-menu">
<li class="nav-item"><a href="./index.html">Home</a></li>
<li class="nav-item"><a href="./tour.html">Tour</a></li>
<li class="nav-item"><a href="./about-us.html">About us</a></li>
<li class="nav-item"><a href="./contact.html">Contact</a></li>
</ul>
</nav>
<section class="contact">
<h2 class="h2-contact">Nous contacter</h2>
<h4 class="h2-contact">Notre équipe se fera un plaisir de planifier votre nouveau voyage !</h4>
<form class="contactform">
<label for="name"> Nom et Prenom : </label><br />
<input
type="text"
id="name"
name="name"
placeholder="Nom Prenom"
/>
<br/>
<label for="email"> Adresse mail : </label><br />
<input
type="email"
id="email"
name="email"
placeholder="[email protected]"
/>
<br />
<label>Periode : </label>
<select id="periode" name="periode">
<option selected>Selectionner votre Periode</option>
<option class="periode1" value="periode1">Janvier à Mars</option>
<option class="periode2" value="periode2">Avril à Juin</option>
<option class ="periode3" value="periode3">Juillet à Septembre</option>
<option class ="periode4" value="periode4">Octobre à Décembre</option>
</select>
<br/>
<div>
<label> Demande : </label>
<br/>
<input type="radio" name="type" class="check" checked />
<label class="check" id="check1" >Devis</label>
<input type="radio" name="type" class="check" />
<label class="check" id="check2" >Disponibilité</label>
<input type="radio" name="type" class="check" />
<label class="check" id="check3" >Renseignement</label>
</div>
<label for="message"> Message :</label><br />
<textarea placeholder="Merci de renseigner vos questions ou commentaires" id="message" cols="20" rows="10" name="message"></textarea>
<br />
<label class="coche" >
<input type="checkbox" />En cochant cette case, j'accepte de recevoir des informations sur les différentes offres disponibles.</label>
<br />
<input id="buttonContact"
type="submit"
value="Envoyer"/>
</form>
</section>
<svg id="arrow-upping" xmlns="http://www.w3.org/2000/svg" class="arrow-up" viewBox="0 0 20 20" fill="currentColor">
<path fill-rule="evenodd" d="M10 18a8 8 0 100-16 8 8 0 000 16zm3.707-8.707l-3-3a1 1 0 00-1.414 0l-3 3a1 1 0 001.414 1.414L9 9.414V13a1 1 0 102 0V9.414l1.293 1.293a1 1 0 001.414-1.414z" clip-rule="evenodd" />
</svg>
<footer class="footer-container">
<img class="logo-btob1" src="https://i.ibb.co/PtCXdz2/btob1.jpg" alt="logo-btob1"/>
<p class="hidden-text">SAS capital à 1 500 000€</p>
<p class="hidden-text">Copyright.</p>
<div>
<a href="https://fr-fr.facebook.com/" target="blank"><img class="social-icon" src="./assets/icons/Facebook_icon.svg" alt=""></a>
<a href="https://twitter.com/?lang=fr" target="blank"><img class="social-icon" src="./assets/icons/Twitter-icon.svg" alt=""></a>
<a href="https://www.youtube.com/" target="blank"><img class="social-icon" src="./assets/icons/Youtube_icon.svg" alt=""></a>
<a href="https://www.instagram.com/?hl=fr" target="blank"><img class="social-icon" src="./assets/icons/Instagram_icon.svg" alt=""></a>
</div>
</footer>
<script src="script.js"></script>
<script src="scriptContact.js"></script>
</body>
</html>