46.5k views
4 votes
3.13 LAB: Poem (HTML)

Create a webpage that displays the poem below.
Use 2 paragraph tags for the stanzas and
tags where necessary to keep the correct formatting.
• Use a 3rd paragraph for the author and date, and enclose the author and date in a tag.
I'm Nobody! Who are you?
Are you
Nobody - Too?
Then there's a pair of us!
Don't tell! They'd banish us - you know!
How dreary to be Somebody!
How public like a
To tell one's name
To an admiring Bog!
Frog -
the livelong June -
By Emily Dickinson (1891)

3.13 LAB: Poem (HTML) Create a webpage that displays the poem below. Use 2 paragraph-example-1
User Aamitarya
by
8.0k points

1 Answer

0 votes

Answer:

<!DOCTYPE html>

<html>

<head>

<title>Emily Dickinson Poem</title>

</head>

<body>

<p>I'm Nobody! Who are you?<br>

Are you<br>

Nobody - Too?<br>

Then there's a pair of us!<br>

Don't tell! They'd banish us - you know!</p>

<p>How dreary to be Somebody!<br>

How public like a<br>

Frog -<br>

To tell one's name<br>

To an admiring Bog!</p>

<p>By <em>Emily Dickinson</em> (1891)</p>

</body>

</html>

User Sifatur Rahman
by
8.0k points