-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathglobal-nav.php
More file actions
23 lines (23 loc) · 1.04 KB
/
global-nav.php
File metadata and controls
23 lines (23 loc) · 1.04 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!-- Global site navigation -->
<!-- STEP 1: Add a nested UL and LI elements for the two pages
inside the "About" section, privacy-policy.php and terms-of-use.php -->
<nav>
<ul>
<li><a href="index.php" title="Go to the Home page">Home</a></li>
<li><a href="red.php" title="Learn about red blocks">Red Blocks</a></li>
<li><a href="blue.php" title="Learn about blue blocks">Blue Blocks</a></li>
<li><a href="yellow.php" title="Learn about yellow blocks">Yellow Blocks</a></li>
<li><a href="green.php" title="Learn about green blocks">Green Blocks</a></li>
<li><a href="about.php" title="Learn more about us">About</a>
<!-- Nested list to go here -->
<ul>
<li>page one</li>
<li>page two with subitems:</li>
<ul>
<li>Subitem 1</li>
<li>Subitem 2</li>
</ul>
</li>Final list item</li>
</ul>
</nav>
<!-- STEP 2: Upload this file to your Web server for your "Building Blocks" site to see the result, then head to 'styles.css' for STEP 3 -->