-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path403.html
54 lines (37 loc) · 1.62 KB
/
403.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
<!doctype html>
<html lang="">
<head>
<!-- Character encoding -->
<meta charset="utf-8">
<!-- Title and Desc -->
<title>403 Forbidden</title>
<meta name="description" content="403 Forbidden: The web page you are trying to open in your browser is a resource that you are not authorized to access.">
<!-- Optimize viewport for mobile -->
<meta name="viewport" content="width=device-width,initial-scale=1">
<!-- Favicons (svg) -->
<link rel="icon" href="favicon.ico" sizes="any">
<link rel="icon" href="favicon.svg" type="image/svg+xml">
<!-- Favicons (png) -->
<!-- <link rel="icon" href="favicon.ico" sizes="any">
<link rel="icon" type="image/png" sizes="32x32" href="favicon-32.png">
<link rel="icon" type="image/png" sizes="16x16" href="favicon-16.png"> -->
<!-- Icons for iOS -->
<link rel="apple-touch-icon" href="pwa/icons/apple-touch-icon.png">
<!-- PWA webmanifest -->
<link rel="manifest" href="pwa/app.webmanifest">
<!-- Color themes -->
<meta name="theme-color" content="#f8c34f" media="(prefers-color-scheme: light)">
<meta name="theme-color" content="#808080" media="(prefers-color-scheme: dark)">
<!-- CSS -->
<link rel="stylesheet" href="assets/css/pwabunga.css">
<link rel="stylesheet" href="assets/pwa/pwabunga-ui.css">
<link rel="stylesheet" href="assets/css/styles.css">
</head>
<body>
<h1>403 Forbidden</h1>
<p>The web page you are trying to open in your browser is a resource that you are not authorized to access.</p>
<!-- Javascript -->
<script src="assets/js/scripts.js"></script>
<script src="pwa/js/pwabunga.js"></script>
</body>
</html>