-
Notifications
You must be signed in to change notification settings - Fork 0
/
sos.html
78 lines (78 loc) · 2.26 KB
/
sos.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Alzheimer's SOS</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f4f4f4;
}
.container {
max-width: 800px;
margin: 20px auto;
padding: 20px;
background-color: #fff;
border-radius: 10px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
h1 {
text-align: center;
color: #333;
}
p {
color: #666;
}
.contact-links {
text-align: center;
margin-top: 20px;
}
.contact-links a {
display: inline-block;
margin: 10px;
padding: 10px 20px;
text-decoration: none;
color: #fff;
background-color: #007bff;
border-radius: 5px;
transition: background-color 0.3s ease;
}
.contact-links a:hover {
background-color: #0056b3;
}
.back-to-home {
text-align: center;
margin-top: 20px;
}
.home-button {
display: inline-block;
margin: 10px;
padding: 10px 20px;
text-decoration: none;
color: #fff;
background-color: #007bff;
border-radius: 20px; /* Rounded edges */
transition: background-color 0.3s ease;
}
.home-button:hover {
background-color: #0056b3;
}
</style>
</head>
<body>
<div class="container">
<h1>Alzheimer's SOS</h1>
<p>If you're in need of immediate assistance or support regarding Alzheimer's, please use the following contact options:</p>
<div class="contact-links">
<a href="tel:800-272-3900">Call Support</a>
<a href="mailto:">Email Support</a>
</div>
<div class="back-to-home">
<a href="index.html" class="home-button">Back to Home</a>
</div>
</div>
</body>
</html>