-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
33 lines (32 loc) · 743 Bytes
/
Copy pathindex.html
File metadata and controls
33 lines (32 loc) · 743 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Task Links</title>
<style>
body {
font-family: Arial, sans-serif;
padding: 20px;
}
a {
display: block;
margin: 10px 0;
color: blue;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
</style>
</head>
<body>
<h1>Task Links</h1>
<a href="1.py">task1</a>
<a href="2.py">task2</a>
<a href="3.py">task3</a>
<a href="Task1.py">task4</a>
<a href="Task2.py">task5</a>
<a href="Task3.py">task6</a>
</body>
</html>