-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathfiles.html
31 lines (31 loc) · 1.12 KB
/
files.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
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta charset="utf-8">
<title>FJs555P | Files</title>
<link rel="icon" type="image/x-icon" href="icon.svg">
<link rel="stylesheet" href="stylesheet.css">
</head>
<body>
<div id = "header">
<a href = "index.html"><p>Home</p></a>
<a href = "description.html"><p>Description</p></a>
<a href = "files.html"><p>Files</p></a>
<a href = "changelog.html"><p>Changelog</p></a>
<img src = "logo.svg"/>
</div>
<img id = "front-clouds" class = "parallax-images" src = "front-clouds.png"/>
<img id = "plane" class = "parallax-images" src = "plane.png"/>
<img id = "back-clouds" class = "parallax-images" src = "back-clouds.png"/>
<div id = "content">
<h1>Files</h1>
<p>This is the files page. All files related to the project may be viewed and downloaded here.</p>
<ul>
<li><a href = "files/test-file-1.txt">test-file-1.txt</a></li>
<li><a href = "files/test-file-2.txt">test-file-2.txt</a></li>
<li><a href = "files/test-file-3.txt">test-file-3.txt</a></li>
</ul>
</div>
<script type="text/javascript" src="javascript.js"></script>
</body>
</html>