-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
28 lines (28 loc) · 914 Bytes
/
index.html
File metadata and controls
28 lines (28 loc) · 914 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Duck Info</title>
</head>
<body>
<h1>All About Ducks</h1>
<nav>
<a href="http://google.com">Click Me</a>
<a href="http://cnn.com">News</a>
</nav>
<article>
<p>Ducks are feathered creatures. Super-feathered.</p>
<p>They live in lovely lakes.</p>
<p>Famous ducks include Daffy and Donald.</p>
<img src="http://www.majesticwaterfowl.org/images/golly%20project.jpg" alt="Extreme duck close-up!">
</article>
<footer>
<p>Copyright 2015 SMcOmber</p>
<nav>
<a href="https://en.wikipedia.org/wiki/Donald_Duck" alt="Donald duck">Donald</a>
<a href="https://en.wikipedia.org/wiki/Daffy_Duck" alt="Daffy duck">Daffy</a>
<a href="https://en.wikipedia.org/wiki/Duck_Dodgers" alt="Duck Dodgers">Duck Dodgers</a>
</nav>
</footer>
</body>
</html>