-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
45 lines (45 loc) · 1.33 KB
/
index.html
File metadata and controls
45 lines (45 loc) · 1.33 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Experiment Links</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 20px;
background-color: #f5f5f5;
}
h1 {
text-align: center;
color: #333;
}
ul {
list-style-type: none;
padding: 0;
}
li {
margin: 10px 0;
}
a {
text-decoration: none;
color: #007bff;
}
a:hover {
text-decoration: underline;
}
</style>
</head>
<body>
<h1>IP Lab Experiments</h1>
<ul>
<li><a href="https://w4lyf.github.io/IP_Lab/Exp_01/Part_1/index.html" target="_blank">Experiment 1: Part 1</a></li>
<li><a href="https://w4lyf.github.io/IP_Lab/Exp_01/Part_2/form.html" target="_blank">Experiment 1: Part 2</a></li>
<li><a href="https://w4lyf.github.io/IP_Lab/Exp_02/index.html" target="_blank">Experiment 2</a></li>
<li><a href="https://w4lyf.github.io/IP_Lab/Exp_03/index.html" target="_blank">Experiment 3</a></li>
<li><a href="https://w4lyf.github.io/IP_Lab/Exp_04/tshirt.html" target="_blank">Experiment 4</a></li>
<li><a href="https://w4lyf.github.io/IP_Lab/Exp_05/index.html" target="_blank">Experiment 5</a></li>
<li>Experiment 6 (cannot be hosted)</li>
</ul>
</body>
</html>