-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpractice.html
More file actions
38 lines (37 loc) · 974 Bytes
/
practice.html
File metadata and controls
38 lines (37 loc) · 974 Bytes
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
<!DOCTYPE html>
<html>
<head>
<!--this is where i can give instructions to the computer-->
<meta charset="utf-8">
<title>National Parks</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<!--this is what the user sees/opens in the browser-->
<header>
<h1>National Parks are Cool</h1>
</header>
<nav>
<ul>
<li>
<a href="index.html">home</a>
</li>
<li>
<a href="about-us.html">About Us</a>
</li>
<li></li>
</ul>
</nav>
<section>
<p>National parks are great. When I work a lot I day dream about road trips.
</p>
</section>
<img src="img/nationalpark.jpg"
alt="National Parks Image"
width="300px"
height="300px">
<p>Check out this cool PNW raodtrip! <a href="http://www.nationalgeographic.com/travel/road-trips/united-states/washington-national-parks/"
>PNW Road Trips</a>
</p>
</body>
</html>