-
Notifications
You must be signed in to change notification settings - Fork 0
/
biblio.html
61 lines (61 loc) · 1.53 KB
/
biblio.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
<html>
<body>
<h3> Liste des emprunts de livres </h3>
<ul>
<li>elhaayoub</li>
<table border="1" width="80%">
<tr>
<th>ID</th>
<th>TITRE</th>
<th>DATE</th>
<th>RENDU</th>
</tr>
<tr>
<td>L1</td>
<td>boite</td>
<td>2022-11-11</td>
<td>OUI</td>
</tr>
<tr>
<td>L2</td>
<td>XML</td>
<td>2021-11-11</td>
<td>NON</td>
</tr>
<tr>
<td colspan="3">Nombre de livres empruntes</td>
<td>2</td>
</tr>
<tr>
<td colspan="3">Nombre de livres non rendu</td>
<td>1</td>
</tr>
</table>
<hr>
<li>banhamza</li>
<table border="1" width="80%">
<tr>
<th>ID</th>
<th>TITRE</th>
<th>DATE</th>
<th>RENDU</th>
</tr>
<tr>
<td>L3</td>
<td>PHP</td>
<td>2019-09-22</td>
<td>NON</td>
</tr>
<tr>
<td colspan="3">Nombre de livres empruntes</td>
<td>1</td>
</tr>
<tr>
<td colspan="3">Nombre de livres non rendu</td>
<td>1</td>
</tr>
</table>
<hr>
</ul>
</body>
</html>