-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
68 lines (49 loc) · 1.55 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
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<link rel="stylesheet" href="CSS/style.css">
<link rel="icon" href="images/ezha.gif" type="image/x-icon" />
<title>Contact</title>
</head>
<body>
<header>
<h1 class="unselectable">Contactez-nous</h1>
</header>
<nav>
<div class="notUsedOnThisVersion">
</div>
<div class="nav">
<a href="index.html">Pokedex</a>
<a href="contact.html">Contact</a>
</div>
</nav>
<main class="contact">
<section>
<form>
<fieldset>
<legend>Nous contacter</legend>
<label id="nom">Nom</label>
<input type="text" id="nom" name="nom">
<label id="prénom">Date</label>
<input type="text" id="prénom" name="prénom">
<label id="mail">Email</label>
<input type="text" id="mail" name="mail">
<label id="message">Message</label>
<textarea id="message" rows="3"></textarea>
<input type="submit" value="Envoyer" class>
</fieldset>
</form>
</section>
</main>
<footer>
<img src="images/pikachu.png" alt="pikachu">
<a href="https://discord.gg/aR2Tj8ZUsa" target="_blank"><img src="images/discord.png" alt="discordLogo"
class="social"></a>
<a href="https://x.com/Ezha_Discord" target="_blank"><img src="images/twitter.png" alt="twitterLogo"
class="social"></a>
<a href="https://www.reddit.com/r/Ezha/" target="_blank"><img src="images/reddit.png" alt="redditLogo"
class="social"></a>
</footer>
</body>
</html>