Newer
Older
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Flit Example HTML</title>
<style>
html, body {
margin: 0;
padding: 0;
}
</style>
<link rel="stylesheet" href="styles/404.css">
</head>
<body>
<main>
<div class="container">
<div class="row">
<div class="col-md-12">
<div id="error">
<h1>Oops!</h1>
<h2>404 Not Found</h2>
<div class="error-details">
Sorry, an error has occured, Requested page not found!
</div>
<div class="error-actions">
<a href="/" class="btn btn-primary btn-lg">
<span class="glyphicon glyphicon-home"></span>
Take Me Home
</a>
<a href="/" class="btn btn-default btn-lg">
<span class="glyphicon glyphicon-envelope"></span>
Contact Support
</a>
</div>
</div>
</div>
</div>
</div>
</main>
<script>
console.log("This is a regular script tag")
</script>
<script type="module">
console.log("This is a module")
</script>
</body>
</html>