-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpage002.html
More file actions
54 lines (54 loc) · 1.2 KB
/
page002.html
File metadata and controls
54 lines (54 loc) · 1.2 KB
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>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta charset="UTF-8">
<title>Page Title</title>
<style>
@import url('https://fonts.googleapis.com/css?family=Roboto+Condensed');
body
{
font-family: 'Roboto Condensed', sans-serif;
background-color: #eeeeee;
}
a:link
{
font-size: 14pt;
color: black;
text-decoration: none;
}
a:visited
{
color: black;
}
a:hover
{
background-color: black;
color: white;
}
blockquote
{
border: 3px solid #333333;
border-radius: 15px;
background-color: #e3e3e3;
}
</style>
</head>
<body>
<nav>
<a href="./page001.html">Home</a> 
<a href="#Apropos">À propos</a> 
<a href="./page002.html">Contact</a>
</nav>
<h2>Formulaire de Contact</h2>
<p>
Bla bla administratif des régles et tous
</p>
<form>
Vôtre adresse mail:<br>
<input type="text" type="email" name="email"><br>
<textarea rows="25" cols="50"></textarea><br>
<input type="submit" value="Envoyer">
</form>
</body>
</html>