-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
46 lines (46 loc) · 922 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Technical Writing Portfolio</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f1f1f1;
}
.container {
max-width: 800px;
margin: 0 auto;
padding: 40px;
}
h1 {
text-align: center;
}
ul {
list-style-type: none;
padding: 0;
margin: 0;
}
li {
margin-bottom: 10px;
}
a {
text-decoration: none;
color: #007bff;
}
</style>
</head>
<body>
<div class="container">
<h1>Technical Writing Portfolio</h1>
<ul>
<li><a href="path/to/document1.pdf">Document 1</a></li>
<li><a href="path/to/document2.pdf">Document 2</a></li>
<li><a href="path/to/document3.pdf">Document 3</a></li>
<!-- Add more documents here as needed -->
</ul>
</div>
</body>
</html>