-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoffline.html
44 lines (35 loc) · 848 Bytes
/
offline.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
<!DOCTYPE html>
<head>
<title>Offline</title>
<link rel="icon" href="https://static.thenounproject.com/png/2663749-200.png" />
<div class="button button1">
<a href="home.html">Home</a>
</div>
</head>
<html>
<h1>I am working on changing this part of the website!</h1>
<p>Don't worry though, It will be back online soon!</p>
<p>(Stay Tuned To The Site To See When It's Fixed!!!)</p>
<style>
.button {
border: none;
color: white;
padding: 16px 32px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
margin: 4px 2px;
transition-duration: 0.4s;
cursor: pointer;
}
.button1 {
background-color: white;
color: black;
border: 2px solid #4CAF50;
}
.button1:hover {
background-color: #4CAF50;
color: white;
}
</style>