-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
46 lines (45 loc) · 954 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<title>Contact</title>
<link rel="stylesheet" type="text/css" href="style.css">
<meta charset="utf-8">
</head>
<body>
<header>
<ul>
<li>
<a href="index.html">ACCUEIL</a>
<a href="formations.html">FORMATIONS</a>
<a href="contact.html">COMPETENCES</a>
<a href="contact.html">CONTACT</a>
</li>
</ul>
</header>
<nav class="formulaire">
<form action="get">
<input type="text" name="nom" placeholder="Nom"><br/><br/>
<input type="email" name="email" placeholder="exemple@mail.fr"><br/><br/>
<textarea name="text" placeholder="Votre message"></textarea><br/><br/>
<input type="submit" name="envoie" value="Envoyer">
</form>
</nav>
<br/>
<br/>
<br/>
<br/>
<br/>
<br/>
<br/>
<br/>
<br/>
<br/>
<br/>
<br/>
<br/>
<br/>
<footer>
<p>Copyright © 2017 | Alexandre RODRIGUES</p>
</footer>
</body>
</html>