-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathtemp.csv
We can make this file beautiful and searchable if this error is corrected: Illegal quoting in line 2.
72 lines (62 loc) · 1.81 KB
/
temp.csv
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Electricty Authority - 404</title>
<style>
h1 {
color: #007dba;
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
width: 100%;
text-align: center;
font-size: 5vw;
}
h2 {
color: #999;
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
width: 100%;
text-align: center;
font-size: 2vw;
}
.img-404 {
background-image: url(https://www.emi.ea.govt.nz/Content/Images/404.png);
background-size: contain;
width: 100%;
min-height: 150px;
background-repeat: no-repeat;
background-position: 50%;
margin:34px auto;
}
.hm-link {
display: block;
width: 300px;
background-image: url(https://www.emi.ea.govt.nz/Content/Images/logo.svg);
background-repeat: no-repeat;
background-size: contain;
height: 100px;
margin:34px auto;
}
@media (max-width:767px) {
h1 {
font-size: 24px;
}
h2 {
font-size: 18px;
}
.hm-link {
height: 70px;
}
.img-404 {
background-size: 180%;
}
}
</style>
</head>
<body>
<a class="hm-link" href="https://www.emi.ea.govt.nz/"></a>
<h1>404: Page not found</h1>
<h2>This page does not exist</h2>
<div class="img-404"></div>
</body>
</html>