-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
67 lines (60 loc) · 1.04 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
<!DOCTYPE html>
<html lang="it">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>404: Page Not Found</title>
<style>
* {
font-family: "Georgia", serif;
}
#goback {
color: #0060DF;
margin-top: 20px;
margin-left: 5%;
}
h1 {
margin-top: 70px;
margin-left: 5%;
margin-bottom: 30px;
font-size: 47px;
}
p {
margin-left: 5%;
}
img {
margin-left: 5%;
vertical-align: middle;
}
#img-text {
padding-left: 15px;
}
.underline {
text-decoration: underline;
}
div {
margin-top: 15px;
}
</style>
</head>
<body>
<h1>
Sorry, we can't find that page
</h1>
<p>
We're all about a healthy internet but sometimes broken URLs happen.
</p>
<span id="goback">
<- Go Back
</span>
<div>
<span>
<img src="mozilla.png">
<span id="img-text">
<span class="underline">Learn</span> about Mozilla, the not-for-profit behind Firefox.
</span>
</span>
</div>
</body>
</html>