-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
84 lines (77 loc) · 1.9 KB
/
index.html
File metadata and controls
84 lines (77 loc) · 1.9 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
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
80
81
82
83
84
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>Welcome to the Allison Home</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body, html {
height: 100%;
font-family: 'Segoe UI', sans-serif;
}
body {
background: url('shifaaz-shamoon-okVXy9tG3KY-unsplash.jpg') no-repeat center center fixed;
background-size: cover;
position: relative;
color: white;
}
.overlay {
background-color: rgba(0, 0, 0, 0.5); /* dark transparent overlay */
position: absolute;
top: 0;
left: 0;
height: 100%;
width: 100%;
display: flex;
justify-content: center;
align-items: center;
text-align: center;
padding: 2rem;
}
.content {
max-width: 600px;
}
h1 {
font-size: 2.5rem;
margin-bottom: 1rem;
}
p {
font-size: 1.2rem;
}
footer {
position: absolute;
bottom: 20px;
width: 100%;
text-align: center;
color: #ccc;
font-size: 0.9rem;
}
</style>
</head>
<body>
<div class="overlay">
<div class="content">
<h1>Welcome to the Allison Family Site</h1>
<p>This domain is used for private family email and communication.</p>
</div>
</div>
<footer>
© 2025 The Allison Family
<br/>
<small>
Photo by
<a href="https://unsplash.com/@sotti?utm_content=creditCopyText&utm_medium=referral&utm_source=unsplash" target="_blank" style="color: #ccc;">
Shifaaz Shamoon
</a> on
<a href="https://unsplash.com/photos/aerial-photography-of-large-body-of-water-and-shoreline-okVXy9tG3KY?utm_content=creditCopyText&utm_medium=referral&utm_source=unsplash" target="_blank" style="color: #ccc;">
Unsplash
</a>
</small>
</footer>
</body>
</html>