forked from js-tasks-ru/jsbasic-20220310_spiritiuster
-
Notifications
You must be signed in to change notification settings - Fork 0
/
404.html
32 lines (32 loc) · 906 Bytes
/
404.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link
href="https://fonts.googleapis.com/css?family=Lato:400,400i|Source+Sans+Pro|Sriracha&display=swap"
rel="stylesheet"
>
<title>
JS basics
</title>
<link rel="stylesheet" href="styles/index.css">
</head>
<body class="page-404">
<header class="header container">
<h1 class="heading">BANGKOK EXPRESS</h1>
<h3 class="subheading">Great food・Free delivery・Fair price</h3>
</header>
<main>
<div class="container text-center">
<h3 class="page-title">
404
</h3>
<p class="general-text">We couldn’t find this page</p>
<button type="button" class="button page-404__button">
BACK TO HOMEPAGE
</button>
</div>
</main>
</body>
</html>