-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathheader.html
More file actions
40 lines (40 loc) · 1.75 KB
/
Copy pathheader.html
File metadata and controls
40 lines (40 loc) · 1.75 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
<!--SAMUEL SQUIRES-->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="description" content="Contains the code for the header bar at the top of every page">
<meta name="author" content="Samuel Squires"/>
<title>Header Bar</title>
<!--CSS themes-->
<link href="/css/custom-styles.css" rel="stylesheet">
</head> <body> <nav> <ul>
<li><a href="/index.html">About Me</a></li>
<li class="dropdown">
<a href="/projects/projects.html">Projects</a>
<ul class="dropdown-content">
<li><a href="/projects/Tableau/Tableau.html">Tableau</a></li>
<li><a href="/projects/print_checkin/print_checkin.html">checkin</a></li>
<li><a href="/projects/RCMExchange/index.html">RCM Exchange</a></li>
</ul>
</li>
<li class="dropdown">
<a href="/articles.html">Articles</a>
<ul class="dropdown-content">
<li class="dropdown">
<a href="/articles/books/books.html">Book Reccommendations</a>
<ul class="dropdown-content">
<li><a href="/articles/books/book1.html">Book 1</a></li>
<li><a href="/articles/books/book2.html">Book 2</a></li>
<li><a href="/articles/books/book3.html">Book 3</a></li>
</li>
<li class="dropdown">
<a href="/articles/blogs/blog.html">Book Reccommendations</a>
<ul class="dropdown-content">
<li><a href="/articles/blogs/blog1.html">blog 1</a></li>
<li><a href="/articles/blogs/blog2.html">blog 2</a></li>
<li><a href="/articles/blogs/blog3.html">blog 3</a></li>
</li>
</ul>
</li>
</ul> </nav> </body> </html>