-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
138 lines (71 loc) · 2.64 KB
/
Copy pathabout.html
File metadata and controls
138 lines (71 loc) · 2.64 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
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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="utf-8">
<title>À propos | HTML, CSS et JavaScript facile</title>
<link rel="stylesheet" href="style.css">
<script src="javascript.js"></script>
<meta name ="À propos du site Learn Programming" content ="Versions, auteur, céation, les informations sur la gestion du site.">
</head>
<body>
<div class="cadre-du-haut">
<p class="supérieur">HTML, CSS et JavaScript facile</p>
<nav>
<ul>
<li><a href="javascript.html">JavaScript</a></li><!--
--><li><a href="css.html">CSS</a></li><!--
--><li><a href="html.html">HTML</a></li>
</ul>
</nav>
</div>
<br>
<div class="cadre">
<table>
<tbody>
<tr>
<td>Auteur du site</td>
<td>Florian COLLIN</td>
</tr>
<tr>
<td>
<a href="versions.html">Version</a>
</td>
<td>
<a href="versions.html#1.1.2">1.1.2</a>
</td>
</tr>
<tr>
<td>Date de première version</td>
<td>01 novembre 2020</td>
</tr>
<tr>
<td>Date de dernière version</td>
<td>11 décembre 2020</td>
</tr>
<tr>
<td>Sources</td>
<td>
<a href="https://github.com/Florian-COLLIN/learn-programming">Sources HTML</a>
<br>
<a href="api.json">Fichier JSON</a>
<br>
<a href="style.css">Fichier CSS</a>
<br>
<a href="javascript.js">Fichier JavaScript</a>
</td>
</tr>
</tbody>
</table>
</div>
<br>
<div class="cadre-du-bas">
<div class="liste-horizontale">
<ul>
<li><a href="about.html">À propos</a></li>
<li><a href="copyrights.html">Droit d'auteur</a></li>
<li><a href="versions.html">Versions du site</a></li>
</ul>
</div>
</div>
</body>
</html>