-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtable2.html
More file actions
74 lines (59 loc) · 2.4 KB
/
table2.html
File metadata and controls
74 lines (59 loc) · 2.4 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
<!DOCTYPE html>
<html>
<head>
<title>Tableau</title>
<link href="image.png" rel="icon">
<link href="image.png" rel="apple-touch-icon">
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/js/bootstrap.min.js"></script>
</head>
<body>
<div class="container">
<table class="table table-hover">
<thead>
<tr>
<th>Désignation</th>
<th>Code du Mathériel</th>
<th>Cathégorie</th>
<th>Origine</th>
<th>Etat</th>
<th>Emplacements</th>
<th>Utilisateurs</th>
</tr>
</thead>
<tbody>
<tr>
<td>Ecran dell</td>
<td>55126</td>
<td>Ecran ordinateur</td>
<th>Achat</th>
<th>Neuf</th>
<th><button type="button" class="btn btn-success">Voir</button></th>
<th><button type="button" class="btn btn-primary">Voir</button></th>
</tr>
<tr>
<td>Ecran dell</td>
<td>55126</td>
<td>Ecran ordinateur</td>
<th>Achat</th>
<th>Neuf</th>
<th><button type="button" class="btn btn-success">Voir</button></th>
<th><button type="button" class="btn btn-primary">Voir</button></th>
</tr>
<tr>
<td>Ecran dell</td>
<td>55126</td>
<td>Ecran ordinateur</td>
<th>Achat</th>
<th>Neuf</th>
<th><button type="button" class="btn btn-success">Voir</button></th>
<th><button type="button" class="btn btn-primary">Voir</button></th>
</tr>
</tbody>
</table>
</div>
</body>
</html>