Lesson 1, Topic 1
In Progress

Challenge: Write a Poem

yousef 27/07/2024

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>