-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
75 lines (59 loc) · 1.99 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
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link href="resources/css/style.css" rel="stylesheet" type="text/css" media="all" />
<link rel="stylesheet" type="text/css" href="resources/css/font-awesome.min.css">
<script type="text/javascript" src="resources/js/menu.js"></script>
<title>A Space Story | Space Box</title>
</head>
<body>
<div id="wrapper">
<div id="header-wrapper">
<div id="header" class="container">
<div id="logo">
<h1>Contact</h1>
</div>
<!-- // MENU // -->
<div id="menu">
<ul class="niv1">
<li><a href="index.html">Accueil</a></li>
<li> <!-- Onglet "Le jeu" -->
<a href="#">Le jeu</a>
<ul class="niv2">
<li><a href="le-jeu/download.html">Télécharger</a></li>
<li><a href="le-jeu/univers.html">Univers</a></li>
<li><a href="le-jeu/galerie.php">Galerie</a></li>
</ul>
</li>
<li> <!-- Onglet "Documentation" -->
<a href="#">Documentation</a>
<ul class="niv2">
<li><a href="documentation/wiki.html">Wiki</a></li>
<li><a href="a href="documentation/doxygen/index.html" target="blank">Doc Technique</a></li>
<li><a href="https://github.com/SpaceBoxInk" target="blank">GitHub <i class="fa fa-external-link" aria-hidden="true"></i></a></li>
</ul>
</li>
<li class="current-page"><a href="contact.html">Contact</a></li>
</ul>
</div>
<!-- // FIN MENU // -->
</div>
</div>
<div id="banner">
<div class="container">
<div class="title">
<h3>Contactez-nous</h3>
</div>
<form action="form.php" method="POST">
<label for="object">Objet</label>
<input type="label" name="objet" id="objet" required><br>
<label for="mail">E-mail</label>
<input type="email" name="mail" id="mail" required><br>
<textarea name="msg" placeholder="Message ..." rows="5"></textarea> <br>
<input type="submit" class="button" value="Envoyer" />
</form>
</div>
</div>
</body>
</html>