-
Notifications
You must be signed in to change notification settings - Fork 2
/
contact.html
91 lines (89 loc) · 3.29 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="css/style.css" />
<title>About Us</title>
</head>
<body>
<header class="bg-main"></header>
<main>
<div class="bandeau-container">
<div
class="bandeau"
style="background-image: url('media/cafe-neon.jpg')"
>
<h1 class="h1contact">Contact</h1>
</div>
<div></div>
</div>
<div class="container">
<p>
Êtes-vous propriétaire ou gérant d'un bar exceptionnel que le monde
devrait découvrir ? Rejoignez notre communauté en ajoutant votre bar à
notre site ! Offrez à votre établissement une visibilité accrue,
atteignez de nouveaux clients et faites partie d'une plateforme dédiée
à célébrer les meilleurs bars de France.</br> Mettez en avant votre bar dès
aujourd'hui et rejoignez notre réseau de passionnés de l'hospitalité !
</p>
<div class="container-contact">
<div class="contact-form">
<form action="https://formspree.io/EMAIL>" method="POST">
<label for="name">Nom :</label>
<input
type="text"
name="nom"
id="nom"
placeholder="Entrez votre nom"
required
/>
<label for="surname">Prénom :</label>
<input
type="text"
name="surname"
id="surname"
placeholder="Entrez votre prénom"
required
/>
<label for="email">Email :</label>
<input
type="email"
name="email"
id="email"
placeholder="Entrez votre email"
required
/>
<label for="message">Message :</label>
<textarea
name="message"
id="message"
cols="50"
rows="10"
placeholder="Entrez votre message"
required
></textarea>
<div class="rating">
<input value="5" name="rating" id="star5" type="radio" />
<label for="star5"></label>
<input value="4" name="rating" id="star4" type="radio" />
<label for="star4"></label>
<input value="3" name="rating" id="star3" type="radio" />
<label for="star3"></label>
<input value="2" name="rating" id="star2" type="radio" />
<label for="star2"></label>
<input value="1" name="rating" id="star1" type="radio" />
<label for="star1"></label>
</div>
<button type="button" id="btn-submit">Envoyer</button>
<input type="reset" value="Annuler" />
</form>
</div>
</div>
</div>
</main>
<footer class="footer"></footer>
<script src="js/header-footer.js"></script>
<script src="js/contact.js" type="module"></script>
</body>
</html>