-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
49 lines (46 loc) · 1.47 KB
/
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
47
48
49
<html>
<head>
<title>Download</title>
<style>
body {
background-color: rgb(34, 34, 34);
margin: 0 auto;
color: #fff;
height: 100vh;
}
.container {
display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
height: 100vh;
}
a {
display: flex;
justify-content: center;
align-items: center;
min-width: 80px;
min-height: 80px;
background-color: rgb(136, 136, 136);
border: 1px solid rgb(105, 105, 105);
color: #fff;
text-decoration: none;
margin-right: 5px;
}
a:last-child {
margin-right: 0px;
}
a:hover {
background-color: rgb(95, 95, 95);
}
</style>
</head>
<body>
<div class="container">
<a href="https://www.rapidtables.com/web/html/link/test_file.zip">Link 1</a>
<a href="https://www.rapidtables.com/web/html/link/test_file.zip">Link 2</a>
<a href="https://www.rapidtables.com/web/html/link/test_file.zip">Link 3</a>
<a href="https://www.rapidtables.com/web/html/link/test_file.zip">Link 4</a>
</div>
</body>
</html>