-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
59 lines (47 loc) · 1.91 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Index</title>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css">
<style>
body{
background: url('../images/background.png') ;
background-size: cover;
background-repeat: no-repeat;
}
.container{
background: #524E7D;
min-height: 100vh;
box-shadow: 0 0 50px #524EB7;
}
p, h1{
color: white;
}
</style>
</head>
<body>
<div class="container">
<br><br><br><br><br>
<h1 class="text-center"> <b>Index</b> </h1>
<br><br><br>
<div class="col-12 text-center">
<ul class="list-group">
<li class="list-group-item"><a href="./nombre/index.html">Nombres</a></li>
<li class="list-group-item"><a href="./formulaire/index.html">Formulaire</a></li>
<li class="list-group-item"><a href="./salaire/index.html">Salaire</a></li>
<li class="list-group-item"><a href="./color/index.html">Color</a></li>
<li class="list-group-item"><a href="./multiplications/index.html">Multiplications</a></li>
<li class="list-group-item"><a href="./eleves/index.html">Elèves</a></li>
<li class="list-group-item"><a href="./request/index.html">Requête</a></li>
<li class="list-group-item"><a href="./421/index.html">421</a></li>
<li class="list-group-item"><a href="./calculatrice/index.html">Calculatrice</a></li>
</ul>
</div>
</div>
<script>
</script>
</body>
</html>