-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathResearch.html
65 lines (57 loc) · 2.01 KB
/
Research.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
64
65
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="style.css" />
<title> 404 - Page not found</title>
</head>
<body>
<!-- Add your navbar header code here -->
<header>
<nav class="navbar">
<ul>
<li>
<a href="./"><button>Homepage</button></a>
</li>
<li>
<a href="About_Me"><button>About</button></a>
</li>
<li>
<a href="Projects"><button>Projects</button></a>
</li>
<li>
<a href="Research"><button>Research</button></a>
</li>
<li>
<a href="Classes"><button>Classes</button></a>
</li>
</ul>
</nav>
</header>
<div class = "main_content">
<nav class = "breadcrumbs">
<ol itemscope="" itemtype="https://schema.org/BreadcrumbList">
<li itemprop="itemListElement" itemscope="" itemtype="https://schema.org/ListItem">
<a href="https://souma4.github.io/" itemprop="item"><span itemprop="name">Home</span></a>
<meta itemprop="position" content="1">
</li>
<span class="sep">/</span>
<li class = "current">
Research
</li>
</nav>
</div>
<main>
<div class="error">
<div class="row">
<div class="col-md-12">
<h1>404 - Page Not Found</h1>
<p>Oops! The page you are looking for does not exist.</p>
<p>Page is currently WIP</p>
<p>Click the button below to return to the homepage.</p>
<a href="index.html">Return to homepage</a>
</div>
</div>
</div>
</main>
</body>
</html>