-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path405.html
More file actions
61 lines (51 loc) · 1.97 KB
/
405.html
File metadata and controls
61 lines (51 loc) · 1.97 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<!DOCTYPE html>
<html lang="auto">
<head>
<title>Page not found!</title>
<!-- Roboto Font -->
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap" rel="stylesheet">
<!-- Import Map -->
<script type="importmap">
{
"imports": {
"@material/web/": "https://esm.run/@material/web/"
}
}
</script>
<!-- Typescale -->
<script type="module">
import '@material/web/all.js';
import {styles as typescaleStyles} from '@material/web/typography/md-typescale-styles.js';
document.adoptedStyleSheets.push(typescaleStyles.styleSheet);
</script>
<script type="module">
import '@material/web/all.js';
import { styles as typescaleStyles } from '@material/web/typography/md-typescale-styles.js';
if (typescaleStyles && typescaleStyles.styleSheet) {
document.adoptedStyleSheets = [typescaleStyles.styleSheet];
} else {
console.error("Failed to load typography styles");
}
</script>
<!-- Meta Tags -->
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="description" content="meta tags">
<meta name="keywords" content="html, learning, beginner">
<meta name="author" content="eb smr">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- CSS -->
<link rel="stylesheet" href="style.css">
<!-- Links -->
<link rel="icon" href="files/FileNotFound.jpg">
</head>
<body>
<h1 class="md-typescale-display-large">Oopsie daisy, this page is not allowed!</h1>
<p class="md-typescale-title-medium">Here's how to fix it:</p>
<md-divider></md-divider>
<md-list>
<md-list-item><li>If its email, the PHP code is broken.</md-list-item>
<md-list-item><li>The request is not allowed.</md-list-item>
</md-list>
</body>
</html>