-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
79 lines (79 loc) · 2.16 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>We've Moved</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Arial', sans-serif;
background-color: #f4f4f4;
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
color: #333;
}
.container {
text-align: center;
background: white;
padding: 30px;
border-radius: 10px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
max-width: 500px;
width: 90%;
}
h1 {
font-size: 2.5rem;
color: #333;
margin-bottom: 20px;
}
h2 {
font-size: 1.4rem;
color: #333;
margin-bottom: 35px;
}
p {
font-size: 1.2rem;
margin-bottom: 20px;
color: #555;
}
a {
text-decoration: none;
color: #fff;
}
.button {
background-color: #007BFF;
color: white;
padding: 15px 30px;
font-size: 1.2rem;
border-radius: 5px;
cursor: pointer;
transition: background-color 0.3s ease;
}
.button:hover {
background-color: #0056b3;
}
footer {
margin-top: 35px;
font-size: 0.9rem;
color: #888;
}
</style>
</head>
<body>
<div class="container">
<h1>We've Moved!</h1>
<p>Our website has moved to a new address. You can now find us at:</p>
<h2>TheAutomatedJournalist.com</h2>
<a href="https://theautomatedjournalist.com/" class="button">Visit the New Website</a>
<footer>© 2024 The Automated Journalist</footer>
</div>
</body>
</html>