index
This commit is contained in:
parent
4b36b0657d
commit
b154676914
2 changed files with 39 additions and 0 deletions
39
index.html
Normal file
39
index.html
Normal file
|
|
@ -0,0 +1,39 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<title>Documents</title>
|
||||
<style>
|
||||
body {
|
||||
font-family: sans-serif;
|
||||
max-width: 600px;
|
||||
margin: 5em auto;
|
||||
padding: 0 1em;
|
||||
background-color: #fefefe;
|
||||
color: #333;
|
||||
}
|
||||
ul {
|
||||
list-style: none;
|
||||
padding: 0;
|
||||
}
|
||||
li {
|
||||
margin-bottom: 1em;
|
||||
}
|
||||
a {
|
||||
text-decoration: none;
|
||||
color: #007acc;
|
||||
font-weight: bold;
|
||||
}
|
||||
a:hover {
|
||||
color: #005fa3;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<h1>📚 Available Documents</h1>
|
||||
<ul>
|
||||
<li>📄 <a href="ba_thesis/ba_thesis.pdf" target="_blank">Download BA Thesis</a></li>
|
||||
</ul>
|
||||
</body>
|
||||
</html>
|
||||
Loading…
Add table
Reference in a new issue