- index.html
HTML
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Instructor Muffin</title>
<!-- Delete the line below -->
<link rel="stylesheet" href="muffin-style.css">
</head>
<body>
<div class="container">
<header class="site-header">
<h1>Instructor Muffin</h1>
<p>Training for beginner kittens</p>
</header>
<section class="features">
<h2>Why choose me?</h2>
<p>I myself was once a kitten. But look at me now.</p>
<p>I have got the master fully trained.</p>
</section>
<section class="skills">
<h2>What will you learn, you may ask?</h2>
<ul class="skills-list">
<li>How to snatch food from the master’s plate</li>
<li>How to give furniture a vintage look</li>
<li>How to open the door and not go in</li>
<li>How to wake the master up at night</li>
</ul>
</section>
<footer class="site-footer">
<p>© Muffin, 2019</p>
<p>I don’t have any contact information, but I can find you myself.</p>
</footer>
</div>
</body>
</html>
You’ve gone to a different page
Goalscompleted
0
- Delete the
<link rel="stylesheet" href="muffin-style.css">
code on line 7.
Comments