-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
49 lines (49 loc) · 1.6 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<link rel="stylesheet" href="style.css" />
<script
src="https://kit.fontawesome.com/f8641e5e4d.js"
crossorigin="anonymous"
></script>
<link
href="https://fonts.googleapis.com/css?family=Open+Sans:300,400,700&display=swap"
rel="stylesheet"
/>
<title>Chez Alicia | Accueil</title>
</head>
<body>
<header class="header">
<nav>
<h1>
<a href="./index.html">Chez Alicia </a>
</h1>
<ul>
<li><a href="./index.html">Accueil</a></li>
<li><a href="./lieu.html">Nous trouver</a></li>
<li><a class="active" href="./contact.html">Contact</a></li>
</ul>
</nav>
</header>
<section class="contact">
<div class="contact-form-container">
<form action="#">
<h1 class="underline">Une question ? Contactez nous</h1>
<label class="my-20" for="name">Nom</label>
<input type="text" name="name" id="name" />
<label class="my-20" for="email">Email</label>
<input type="email" name="email" id="email" />
<label class="my-20" for="question">Questions et remarques</label>
<textarea name="question" id="question"></textarea>
<button class="btn btn-dark my-20">SOUMETTRE</button>
</form>
</div>
</section>
<footer>
<p>Copyright Ⓒ - alicia - 2020</p>
</footer>
</body>
</html>