-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
49 lines (49 loc) · 1.05 KB
/
index.html
File metadata and controls
49 lines (49 loc) · 1.05 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Site Moved</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
body {
background: #111;
color: #fafafa;
font-family: system-ui, Arial, sans-serif;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100vh;
margin: 0;
}
.notice {
background: #23272f;
padding: 2em 3em;
border-radius: 1em;
box-shadow: 0 8px 32px #0008;
text-align: center;
}
a {
color: #3da9fc;
text-decoration: none;
font-weight: bold;
font-size: 1.15em;
transition: color 0.2s;
}
a:hover {
color: #ef4565;
}
</style>
</head>
<body>
<div class="notice">
<h1>Sorry, but I've moved my website.</h1>
<p>
You can find it here:<br>
<a href="https://christospetridis.vercel.app/" target="_blank">
https://christospetridis.vercel.app/
</a>
</p>
</div>
</body>
</html>