-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTitleBar.html
More file actions
23 lines (22 loc) · 746 Bytes
/
TitleBar.html
File metadata and controls
23 lines (22 loc) · 746 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<link href="./assets/css/style.css" rel="stylesheet">
<link href="./assets/css/mystyle.css" rel="stylesheet">
<div class="titleBar">
<a onclick="window.location.href='/'" class="title">Laggrif's place</a>
<div class="menubar">
<button onclick="window.location.href='/'" class="menuItem">
Home
</button>
<div class="verticalLine"></div>
<button onclick="window.location.href='/about'" class="menuItem">
About
</button>
<div class="verticalLine"></div>
<button onclick="window.location.href='/projects'" class="menuItem">
Projects
</button>
<div class="verticalLine"></div>
<button onclick="window.location.href='/contact'" class="menuItem">
Contact
</button>
</div>
</div>