Skip to content
Snippets Groups Projects
index.html 1000 B
Newer Older
<!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>