Lesson Progress
0% Complete
Title your poem
To practice the basics of HTML, let’s have you write and markup a poem. To start off with, what will the title of your poem be?
Using the <h1>
tag we learned about, add a heading for your poem. This will be your title.
<!DOCTYPE HTML>
<html>
<head>
<title>Challenge: Write a Poem</title>
<meta charset="utf-8">
</head>
<body>
</body>
</html>