-
Notifications
You must be signed in to change notification settings - Fork 2
/
communaute.html
117 lines (117 loc) · 3 KB
/
communaute.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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="utf-8"/>
<link rel="stylesheet" type="text/css" href="style.css">
<title>COMMUNAUTE</title>
</head>
<body>
<header>
<form>
<fieldset>
<!--nom du site-->
<h1>Du coup TV</h1>
<!--identification mail et mot de passe-->
<div>
<input type="email" name="email" value="adresse email"/>
<input type="submit" name="validation" value="ok"/>
Mot de passe:
<input type="password" name="password" value="mot de passe"/>
<input type="submit" name="validation" value="ok"/>
</div>
<a href="">Mot de passe oublié?</a>
<!--les logos facebook, twitter et google+-->
<div>
<picture>
<a href="https://fr-fr.facebook.com"><img src="img/logofb.jpg" alt="logo facebook" title="connexion avec votre compte facebook"></a>
</picture>
<picture>
<a href="https://twitter.com"><img src="img/logotwi.jpg" alt="logo twitter" title="connexion avec votre compte twitter"></a>
</picture>
<picture>
<a href="https://plus.google.com"><img src="img/logogplus.jpg" alt="logo google+" title="connexion avec votre compte google+"></a>
</picture>
</div>
</fieldset>
</form>
<section>
<!--menu du haut-->
<nav>
<form>
<thead>
<tr>
<a href="index.html"><th>ACCUEIL</th></a>
<a href="moncompte.html"><th>MON COMPTE</th></a>
<a href="communaute.html"><th>COMMUNAUTE</th></a>
<a href="actualite.html"><th>ACTUALITES</th></a>
<a href="classement.html"><th>CLASSEMENT</th></a>
</tr>
</thead>
</form>
</nav>
</section>
</header>
<main>
<section>
<fieldset>
<!--la partie recherche-->
<div>
<input type="search" placeholder="Rechercher..." name="rechercher"/>
<INPUT TYPE="submit" VALUE="Rechercher"/>
</div>
<!--choix de la langue-->
<div>
langue:
<select name="langue">
<option value="fr">Fr</option>
<option value="eng">Eng</option>
</select>
</div>
</fieldset>
</section>
</main>
<aside>
<nav>
<!--le menu du site a gauche
<form>
<table>
<thead>
<tr>
<th><a href="index.html">MENU</a></th>
</tr>
</thead>
<tbody>
<tr>
<th><a href="moncompte.html">MON COMPTE</a></th>
</tr>
<tr>
<th><a href="communaute.html">COMMUNAUTE</a></th>
</tr>
<tr>
<th><a href="actualite.html">ACTUALITES</a></th>
</tr>
<tr>
<th><a href="classement.html">CLASSEMENT</a></th>
</tr>
</tbody>
</table>
</form>
-->
</nav>
</aside>
<footer>
<!--nom du site-->
<h1>Du coup TV</h1>
<!--logo du site-->
<picture><a href=""><img src="img/logoimie.png" alt="logo du site" title="nom du site"></a></picture>
<p>Copyrights patati patata chinouinouin steffeur sport etude protege tibia</p>
<nav>
<!--liste de liens-->
lien 1:<a href="" title="lien 1">www.lien1.com</a><br>
lien 2:<a href="" title="lien 2">www.lien2.com</a><br>
lien 3:<a href="" title="lien 3">www.lien3.com</a><br>
lien 4:<a href="" title="lien 4">www.lien4.com</a><br>
</nav>
</footer>
</body>
</html>