-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnot-found-page.html
63 lines (63 loc) · 2.02 KB
/
not-found-page.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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>
portfolio
</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="https://fonts.googleapis.com/css2?family=Catamaran:wght@100;200;300;400;500;600;700;800;900&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<a href="index.html" class="header-brand">saga</a>
<nav>
<ul>
<li><a href="portfolio.html">Portfolio</a></li>
<li><a href="about.html">About Me</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
<a href="cases.html" class="header-cases">cases</a>
</header>
<main>
<div class="wrapper">
<section class="error-banner">
<div class="vertical-center">
<h2 class="error-h2">ERROR 404!</h2>
<p class="error-p">Bhai haju page banavana baki 6 atyare anaa thi kaam chalaav</p>
</div>
</section>
</div>
</main>
<div class="wrapper">
<footer>
<ul class="footer-link-main">
<li><a href="index.html">home</a></li>
<li><a href="cases.html">cases</a></li>
<li><a href="portfolio.html">portfolio</a></li>
<li><a href="about.html">about me</a></li>
<li><a href="contact">contact</a></li>
</ul>
<ul class="footer-link-cases">
<li><p>latest cases</p></li>
<li><a href="#">step into web dev</a></li>
<li><a href="#">python basics</a></li>
<li><a href="#">journy started</a></li>
</ul>
<div class="footer-sm">
<a href="https://www.instagram.com/god.king.01/">
<img src="img/insta.png" alt="insta logo">
</a>
<a href="https://www.facebook.com/god.king.37">
<img src="img/fb.png" alt="facebook logo">
</a>
<a href="#">
<img src="img/twitter.jpg" alt="twitter logo">
</a>
</div>
</footer>
</div>
</body>
</html>