-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpage.html
88 lines (74 loc) · 1.29 KB
/
page.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
80
81
82
83
84
85
86
87
88
<!DOCTYPE html>
<html lang="eng">
<head>
<meta charset="utf-8" />
<metaname="viewport" content="width=device-width, initial-scale=1, maximum-scale=5"/>
<style>
footer, a{
text-align: center;
color: grey;
}
html, body{
height:100%;
margin:0;
padding:0;
}
.container {
display: flex;
align-items: center;
justify-content: center
}
img {
max-width: 100%
}
.image {
flex-basis: 40%
}
.text {
font-size: 20px;
padding-left: 20px;
text-align: justify;
vertical-align: top;
}
button{
background-color: black;
width: 180px;
height: 50px;
color: white;
border-radius: 4px;
}
.button{
margin: 0;
position: absolute;
top: 50%;
left: 65%;
-ms-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
}
</style>
</head>
<body>
<div class="container">
<div class="image">
<img src="Scarecrow.png">
</div>
<div class="text">
<h1>I have bad news for you</h1>
<p>The page you are looking for has been removed or is temporarily unavailable</p>
<div class="button"><button type="button">BACK TO HOMEPAGE</button></div>
</div>
</div>
</br>
</br>
</br>
</br>
</br>
</br>
</br>
</br>
</br>
<footer>
<p>created by<a href="https://github.com/Wolfhaize">Wolfhaize</a>- devChallenges.io</p>
</footer>
</body>
</html>