-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
71 lines (64 loc) · 1.52 KB
/
index.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
<html>
<head>
<meta charset="UTF-8" />
<title>ATE202 - Piana/Boudhar</title>
<link href="https://fonts.googleapis.com/css?family=Karma" rel="stylesheet">
<style type="text/css">
body {
font-family: 'Karma', serif;
}
table {
border-collapse: collapse;
margin: auto;
width: 70%;
}
table td {
border: 1px solid black;
padding: 10px;
margin-top:10px;
transition: padding 0.2s ease-in;
}
a {
text-decoration: none;
}
table tr:nth-child(odd) {
background-color: #6495ED;
transition: all 1s ease-in;
}
table tr:nth-child(odd):hover {
background-color: #333;
}
table tr:nth-child(odd) a {
color: white;
}
h3 {
margin: auto;
width: 30%;
}
</style>
</head>
<body>
<h3>Liste des réalisations dans le cadre des TP</h3>
<table>
<tr>
<td><a href="./5.1">Questions 5.1</a></td>
</tr>
<tr>
<td><a href="./5.2">Questions 5.2</a></td>
</tr>
<tr>
<td><a href="./5.3">Questions 5.3</a></td>
</tr>
<tr>
<td><a href="./5.4">Questions 5.4</a></td>
</tr>
<tr>
<td><a href="./annuaire">TP - annuaire</a></td>
</tr>
<!--<tr>
<td><a href="./5.1">Questions 5.1</a></td>
</tr>
-->
</table>
</body>
</html>