-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathheader.html
More file actions
27 lines (27 loc) · 1.01 KB
/
header.html
File metadata and controls
27 lines (27 loc) · 1.01 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8"/>
<link rel="stylesheet" type="text/css" href="css/header.css">
</head>
<body>
<header>
<ul>
<li id="logo">
<a href="#"><img src="images/favicon1.png" alt="ROCC Logo"></a>
</li>
<li id="stories">
<span id="stories-menu-button" class="header-button">Stories</span>
</li>
<li id="story-title"></li>
<li id="header-right">
<a href="#"><span class="account-access header-button">Admin</span></a>
<span class="divider">|</span>
<a href="#"><span class="account-access header-button">robin_rempel@sil.org</span></a>
<span class="divider">|</span>
<a href="#"><span class="account-access header-button">Logout</span></a>
</li>
</ul>
</header>
</body>
</html>