-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathContact.html
54 lines (54 loc) · 1.81 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- google font-->
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap"
rel="stylesheet"
/>
<script
src="https://kit.fontawesome.com/0050ad9f6a.js"
crossorigin="anonymous"
></script>
<link rel="stylesheet" href="./css/Styles.css" />
<link
rel="stylesheet"
media="only screen and (max-width:500px)"
href="./css/Styles.mobile.css"
/>
<title>Café Florette | Acceuil</title>
</head>
<body>
<!-- Header -->
<header class="header">
<nav>
<h1>
<a href="./index.html"> Café Florette</a>
</h1>
<ul>
<li><a href="index.html">Acceuil</a></li>
<li><a href="Where.html">Adresse</a></li>
<li class="active"><a href="Contact.html">Contact</a></li>
</ul>
</nav>
</header>
<section class="contact">
<div class="container-contact">
<form action="#">
<h1 class="underligne">Une question? Contactez nous</h1>
<label class="my-20" for="name">Nom:</label>
<input type="text" name="name" id="name" required />
<label class="my-20" for="email">Email:</label>
<input type="email" name="email" id="email" required />
<label class="my-20" for="question"> Votre Question:</label>
<textarea name="question" id="question" required></textarea>
<button class="btn btn-dark my-20">SOUMETTRE</button>
</form>
</div>
</section>
</body>
</html>