-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpuppy.html
More file actions
29 lines (29 loc) · 759 Bytes
/
puppy.html
File metadata and controls
29 lines (29 loc) · 759 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
<!DOCTYPE html>
<html>
<head>
<title>Puppies!</title>
</head>
<body>
<h1>Why puppies are great</h1>
<img src="img/puppy.jpeg" alt="A puppy">
<p>Puppies are the <strong>best</strong>.</p>
<h2>These are a few of my <em>favorite</em> things about <em>puppies</em>!</h2>
<ul>
<li>Fuzzy</li>
<li>Playful</li>
<li>Sleepy</li>
<li>Clumsy</li>
<li>Cute</li>
</ul>
<h2>My favorite puppy breeds</h2>
<p>All puppies are adorable but these breeds are the most adorable!</p>
<ol>
<li>Husky</li>
<li>Golden doodle</li>
<li>Pitbull</li>
<li>Corgi</li>
<li>Pomeranian</li>
</ol>
<p>Meet my favorite kitten, <a href="kitten.html">Sugar</a></p>
</body>
</html>