-
Notifications
You must be signed in to change notification settings - Fork 163
/
Copy pathindex.html
57 lines (53 loc) · 1.7 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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<title>🏫 Index des TP</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="apple-touch-icon" href="apple-touch-icon.png">
<!-- Place favicon.ico in the root directory -->
<style>
body{
background-color: #e9ebee;
font-family: system, -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
font-size: 16px;
margin: 0 auto;
max-width: 800px;
}
</style>
<!-- Code à dé-commenter si besoin de fichier CSS ou JS -->
<!--<link rel="stylesheet" href="style.css">-->
<!--<script src="main.js"></script>-->
</head>
<body>
<h1>🏫 Page d'index des TP 🎒</h1>
<!-- Add your site or application content here -->
<p>Hello ☀️️</p>
<img src="galilee.png" alt="Logo Galilee"/>
<ul>
<li>
<a href="tp1/index.html">/TP1</a>
</li>
<li>
<a href="tp2/index.html">/TP2</a>
</li>
<li>
<a href="tp3/index.html">/TP3</a>
</li>
<li>
<a href="tp4/index.html">/TP4</a>
</li>
<li>
<a href="tp5/index.html">/TP5</a>
</li>
<li>
<a href="tp6/index.html">/TP6</a>
</li>
<li>
<a href="tp7/index.html">/TP7</a>
</li>
</ul>
</body>
</html>