-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
50 lines (50 loc) · 1.31 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Website moved</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<style>
body {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
font-family: Georgia, "Times New Roman", Times, serif;
background-color: #f5f5f5;
color: #333;
text-align: center;
}
.redirect-container {
max-width: 600px;
padding: 20px;
border: 1px solid #ccc;
background-color: #fff;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
h1 {
font-size: 20px;
margin-bottom: 10px;
}
p {
font-size: 14px;
line-height: 1.5;
color: #555;
}
a {
color: #1a0dab;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
</style>
</head>
<body>
<div class="redirect-container">
<h1>Notice: Website Moved</h1>
<p>This site has been moved to a new location.</p>
<p><a href="https://mattiaturin.duckdns.org">Proceed to the new website</a></p>
</div>
</body>
</html>