-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathheader and footer.html
46 lines (40 loc) · 1.4 KB
/
header and footer.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
<!DOCTYPE html>
<html>
<head>
<title> DART </title>
<link rel="stylesheet" href="src/styles/header and footer.css">
</head>
<body>
<!-- Header and Nav Bar -->
<header>
<!-- Logo Image -->
<div>
<img id="logoImage" src="assets\logo\phd-logos.jpg">
</div>
<!-- Nav Links -->
<nav>
<ul>
<li> <a href="#"> Get Started </a> </li>
<li> <a href="signup.html"> Sign Up </a> </li>
<li> <a href="signin.html"> Sign In </a> </li>
</ul>
</nav>
<!-- Banner Texts -->
<div id="intro">
<h1> Find a Research Paper </h1>
<h5> Search for a Topic </h5>
<p>We are here to help you publish your desired feild in PhD </p>
</div>
<!-- Banner Image -->
<div>
<img id="bannerImage" src="assets\illustrations\undraw_Lost_online_re_upmy.png">
</div>
</header>
<!--
INSERT CONTENT HERE
-->
<!-- Footer -->
<footer>
<p>DART © <script>document.write(new Date().getFullYear());</script> All Rights Reserved!</p> </footer>
</body>
</html>