-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
64 lines (60 loc) · 1.36 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Shuffle Mall</title>
<style>
body {
background-color: #1a1a1a;
color: #f2f2f2;
font-family: Arial, sans-serif;
text-align: center;
}
h1 {
color: #f2f2f2;
font-size: 2.5em;
margin-top: 50px;
}
img {
display: block;
margin-left: auto;
margin-right: auto;
width: 80%;
}
p {
font-size: 1.2em;
margin-top: 50px;
margin-left: auto;
margin-right: auto;
width: 80%;
}
a:link {
color: DodgerBlue;
background-color: transparent;
text-decoration: none;
}
a:visited {
color: DodgerBlue;
background-color: transparent;
text-decoration: none;
}
a:hover {
color: white;
background-color: transparent;
text-decoration: underline;
}
a:active {
color: white;
background-color: transparent;
text-decoration: underline;
}
</style>
</head>
<body>
<h1>Shuffle Mall</h1>
<p>Shufflemall.com was a website that showcased the best geek gifts and tech goods from across the web.
<br><br>It is no longer active, but this page serves as a historical record of its existence.
<br> <br><br>
<img src="screenshot.png" alt="Screenshot of Shuffle Mall">
</body>
</html>