-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfiles.html
More file actions
53 lines (53 loc) · 1.85 KB
/
Copy pathfiles.html
File metadata and controls
53 lines (53 loc) · 1.85 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="icon" type="image/x-icon" href="/web_icon.ico">
<link rel="stylesheet" href="filestyle.css">
<title>Download Page</title>
</head>
<body>
<div class="container">
<h1>Download Files</h1>
<table class="styled-table">
<thead>
<tr>
<th>Name</th>
<th>Size</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><a href="/download/fileText.txt" download>fileText.txt</a></td>
<td>1 KB</td>
</tr>
<tr>
<td><a href="/download/image.jpg" download>image.jpg</a></td>
<td>1.5 MB</td>
</tr>
<tr>
<td><a href="/download/sound.mp3" download>sound.mp3</a></td>
<td>985 KB</td>
</tr>
<tr>
<td><a href="/download/video.webm" download>video.webm</a></td>
<td>6.9 MB</td>
</tr>
<tr>
<td><a href="/download/Project_Socket.pdf" download>Project_Socket.pdf</a></td>
<td>650 KB</td>
</tr>
</tbody>
</table>
<div class="buttons">
<button class="Back" onclick="goToInfoPage()">Back</button>
</div>
</div>
</body>
<script>
function goToInfoPage() {
window.location.href = "/info.html"
}
</script>
</html>