-
-
Notifications
You must be signed in to change notification settings - Fork 123
/
index.html
50 lines (40 loc) · 1.32 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
<!DOCTYPE html>
<html lang="en">
<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>connection timed out</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div>
<img class="image1" src="img1.png">
</div>
<div class="init-text">
<h1>This webpage is not available</h1>
</div>
<div>
<p style="padding-left: 280px;">ERR_CONNECTION_TIMED_OUT</p>
<p style="padding-left: 280px;">The website took too long to respond</p>
</div>
<div id = "detail-info" style="display: none">
<p>Try:</p>
<li>Rechecking the connection</li>
<li>Checking the proxy and the firewall</li>
</div>
<br>
<button onclick="showBar()" style="margin-left: 280px;">Details</button>
<a href="index.html"><button style="margin-left: 280px;" class="rel-but">Reload</button></a>
<script>
function showBar() {
var a = document.getElementById("detail-info");
if (a.style.display === "none") {
a.style.display = "block";
} else {
a.style.display = "none";
}
}
</script>
</body>
</html>