-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
40 lines (31 loc) · 1.19 KB
/
index.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
<!DOCTYPE html>
<html>
<head>
<title>Page Not Found Design | Error 404 Page Design | Rustcode</title>
<link rel="stylesheet" type="text/css" href="style.css">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.css"/>
</head>
<body>
<div class="container-fluid">
<div class="row d-flex justify-content-center align-items-center height-vh">
<div class="col-lg-6 col-12">
<div class="col-md-12">
<img src="image.png" width="100%">
</div>
</div>
<div class="col-lg-6 col-12">
<div class="col-12 d-flex flex-column justify-content-center align-items-center">
<h1 class="main-heading">404</h1>
<h2>we couldn't find this page.</h2>
<div class="text-center mt-4 mb-5">
<button class="btn btn-success px-3 mr-2"><i class="fa fa-home"></i> Home</button>
<button class="btn btn-success px-3 mr-2"><i class="fa fa-phone"></i> Contact</button>
<button class="btn btn-success px-3 mr-2"><i class="fa fa-info"></i> Report</button>
</div>
</div>
</div>
</div>
</div>
</body>
</html>