-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpage-4.html
40 lines (36 loc) · 1.2 KB
/
page-4.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" href="https://fav.farm/✅">
<title>Page #4 | Set current page menu item</title>
<link rel="stylesheet" href="./css/style.css">
<script src="./js/index.js" type="module"></script>
</head>
<body>
<div class="page-layout">
<header>
<h1>Set Current Page Menu Item</h1>
<nav class="primary-navigation">
<ul>
<li><a href="./index.html">Home</a></li>
<li><a href="./page-1.html">Page #1</a></li>
<li><a href="./page-2.html">Page #2</a></li>
<li><a href="./page-3.html">Page #3</a></li>
<li><a href="./page-4.html">Page #4</a></li>
</ul>
</nav>
</header>
<main>
<h2>Page #4</h2>
</main>
<footer>
<a href="https://github.com/chrisnajman/set-current-page-menu-item" target="_blank"
rel="noopener noreferrer">
GitHub Repository
</a>
</footer>
</div>
</body>
</html>