-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathkitten.html
More file actions
25 lines (25 loc) · 794 Bytes
/
kitten.html
File metadata and controls
25 lines (25 loc) · 794 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
<!DOCTYPE html>
<html>
<head>
<title>My favorite kitten!</title>
</head>
<body>
<h1>My kitten</h1>
<img src="img/kitten.jpg" alt="My kitten">
<p>I got my kitten 2 weeks ago. She is very cute. Her name is <strong>Sugar</strong>.</p>
<h2>These are a few of my kitten's <em>favorite</em> things</h2>
<ul>
<li>Food</li>
<li>Ribbons</li>
<li>Shiny stuff</li>
</ul>
<h2>Sugar's Morning Routine</h2>
<p>When my kitten gets up in the morning, she is ready for the day! Here is her normal morning routine</p>
<ol>
<li>She runs around the house</li>
<li>She wakes up her human</li>
<li>She runs around my feet until I pour her food</li>
</ol>
<p>I also love <a href="puppy.html">puppies</a>!</p>
</body>
</html>