-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
59 lines (59 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
58
59
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="css/home.css">
<title>ART Labs Main Page</title>
</head>
<body>
<h1>These are the Labs for the Atomic Red Team course</h1>
<table>
<tr>
<th>Labs</th>
<th>Descriptions</th>
</tr>
<tr>
<td><a href="labs/lab1.html">Lab #1</a></td>
<td>Lab 1's description</td>
</tr>
<tr>
<td><a href="labs/lab2.html">Lab #2</a></td>
<td>Lab 2's description</td>
</tr>
<tr>
<td><a href="labs/lab3.html">Lab #3</a></td>
<td>Lab 3's description</td>
</tr>
<tr>
<td><a href="labs/lab4.html">Lab #4</a></td>
<td>Lab 4's description</td>
</tr>
<tr>
<td><a href="labs/lab5.html">Lab #5</a></td>
<td>Lab 5's description</td>
</tr>
<tr>
<td><a href="labs/lab6.html">Lab #6</a></td>
<td>Lab 6's description</td>
</tr>
<tr>
<td><a href="labs/lab7.html">Lab #7</a></td>
<td>Lab 7's description</td>
</tr>
<tr>
<td><a href="labs/lab8.html">Lab #8</a></td>
<td>Lab 8's description</td>
</tr>
<tr>
<td><a href="labs/lab9.html">Lab #9</a></td>
<td>Lab 9's description</td>
</tr>
<tr>
<td><a href="labs/lab10.html">Lab #10</a></td>
<td>Lab 10's description</td>
</tr>
</table>
</body>
</html>