-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patherror.html
More file actions
114 lines (114 loc) · 3.84 KB
/
error.html
File metadata and controls
114 lines (114 loc) · 3.84 KB
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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="styles/error.css" />
<title>Error 🚫</title>
</head>
<body>
<header>
<div class="lay1">
<button class="exit"><img src="imgs/exit.svg" alt="" /></button>
<div class="lay2">
<div class="NL-img">
<img src="imgs/newletter.svg" alt="" />
</div>
<div class="NL-sub">
<h4>Subscribe to our Newsletter!</h4>
<p>We'll informed you with our new blogs and the latest updates!</p>
<form>
<input type="text" placeholder="Name" />
<input type="email" placeholder="Email" />
<input type="submit" value="Subscribe" />
</form>
</div>
</div>
</div>
<nav>
<div class="logo">
<img src="imgs/logo-nav.svg" alt="" />
</div>
<div class="nav-bar">
<ul>
<li><a href="index.html">home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="events.html">Events</a></li>
<li><a href="#">Projects</a></li>
<li><a href="#">blogs</a></li>
<li><a href="comiitees.html">comittes</a></li>
<li><a href="#">contact us</a></li>
</ul>
</div>
<div class="news-letter">
<button>Newsletter</button>
</div>
</nav>
<section class="error">
<div class="error-dis">
<h1>404</h1>
<p>Oops!, It seems that we can’t find this page</p>
<button><a href="index.html">Home Page</a></button>
</div>
<div class="error-img">
<img src="imgs/error.svg" alt="" />
</div>
</section>
</header>
<footer>
<section class="footer1">
<section class="info">
<img src="imgs/logo-nav.svg" alt="" />
<p class="info-location">
<span>
<img src="imgs/location-pin-red.svg" alt="" />
</span>
Faculty of Engineering,<br />
Mansoura University,<br />
Dakhliya, Egypt
</p>
<div class="contact-us">
<a href="https://web.facebook.com/CATReloaded">
<img src="imgs/facebook-f-brands.svg" alt="" />
</a>
<a href="https://twitter.com/CATReloaded">
<img src="imgs/twitter-brands.svg" alt="" />
</a>
<a href="https://www.youtube.com/user/C4TReloaded">
<img src="imgs/youtube-brands.svg" alt="" />
</a>
<a href="https://github.com/CATReloaded">
<img src="imgs/github-brands.svg" alt="" />
</a>
<a href="https://www.linkedin.com/company/cat-reloaded/">
<img src="imgs/linkedin-in-brands.svg" alt="" />
</a>
</div>
</section>
<section class="news-letter">
<p>NEWSLETTER</p>
<form>
<input type="text" placeholder="Name" />
<input type="email" placeholder="Email" />
<input type="submit" value="Subscribe" />
</form>
</section>
<section class="blog-tags">
<p>BLOG TAGS</p>
<p>#Web_development</p>
<p>#Web_Front-End</p>
<p>#Data_Science</p>
<p>Cyper_security</p>
</section>
<section class="annual-partner">
<p>ANNUAL PARTENER</p>
<img src="imgs/triago.png" alt="" width="155px" height="155px" />
</section>
</section>
<section class="footer2">
<p>Copywrite© 2021 All Right Reserved by CATReloaded Technical</p>
</section>
</footer>
</body>
</html>