forked from abhishekti7/WebNet
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patherror.html
More file actions
42 lines (40 loc) · 1.05 KB
/
error.html
File metadata and controls
42 lines (40 loc) · 1.05 KB
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
<!DOCTYPE html>
<html>
<link href="https://fonts.googleapis.com/css?family=Krona+One" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="shortcut icon" type="image/x-icon" href="pic/error-icon.png" />
<style type="text/css">
body{
padding-top: 40px;
font-family: 'Krona One', sans-serif;
text-align: center;
font-size: 24px;
background-color: #BFB9B9;
}
a{
font-family: Roboto Mono, serif;
margin: 10px;
padding: 10px;
border-radius: 5px;
color: white;
background-color: black;
text-decoration: none;
}
.fa{
font-size: 24px;
color: black;
}
.fa:hover{
opacity: .75;
}
</style>
<body>
<div>
<p>This website is best dislpayed on a PC.</p>
<p>To Register via a mobile device, please visit our Registration App on Google Play Store.</p>
<i class="fa fa-google"></i><br>
<p>For further inquiries..</p>
<a href="contact.html">Contact Us.</a>
</div>
</body>
</html>