-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcommentaire.html
104 lines (100 loc) · 3.19 KB
/
commentaire.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
<!DOCTYPE html>
<html lang="FR">
<head>
<meta charset="utf-8"/>
<title>Lexique Balise</title>
</head>
<body>
<header>
<menu>
<h2><strong> Menu</strong></h2>
<table>
<tr>
<th>
<a href="body.html" target="_parent"> <body> </a>
</th>
<th>
<a href="html.html" target="_parent"> <html> </a>
</th>
<th>
<a href="title.html" target="_parent"> <tilte> </a>
</th>
<th>
<a href="B.html" target="_parent"> <B,I,U,PRE> </a>
</th>
<th>
<a href="P.html" target="_parent"> <P,UL,LI,BR,HR> </a>
</th>
<th>
<a href="TABLE.html" target="_parent"> <TABLE TD TR> </a>
</th>
<th>
<a href="IMG.html" target="_parent"> <IMG> </a>
</th>
<th>
<a href="a.html" target="_parent"> <A> </a>
</th>
<th>
<a href="H.html" target="_parent"> <H1...H6> </a>
</th>
</tr>
</table>
<table>
<tr>
<th>
<a href="commentaire.html" target="_parent"> <!...> </a>
</th>
<th>
<a href="FORM.html" target="_parent"> <FORM> </a>
</th>
<th>
<a href="INPUT.html" target="_parent"> <INPUT> </a>
</th>
<th>
<a href="TEXTAREA.html" target="_parent"> <TEXTAREA> </a>
</th>
<th>
<a href="SELECT.html" target="_parent"> <SELECT> </a>
</th>
<th>
<a href="META.html" target="_parent"> <META> </a>
</th>
<th>
<a href="HEAD.html" target="_parent"> <HEAD> </a>
</th>
<th>
<a href="LINK.html" target="_parent"> <LINK> </a>
</th>
<th>
<a href="DIV.html" target="_parent"> <DIV> </a>
</th>
</tr>
</table>
</menu>
</header>
<main>
<div id="Definition">
<br><hr>
<h1> Definition</h1>
<br>
<p>
Le commentaire est utilisé pour donner des indications dans le code source<br>
Les commentaires sont utiles pour la bonne compréhension du code source pour les développeurs<br>
Le commentaire n'apparait pas sur la page dans le navigateur
</p>
</div>
<div id="Exemple">
<br>
<h1>Exemple</h1>
<br>
<p><xmp>
Voici un commentaire dans un fichier HTML:
<!--This is a comment. Comments are not displayed in the browser-->
</xmp>
</p>
</div>
</main>
<footer>
</footer>
</body>
</html>