How do I insert a paragraph into html?



  • Using the <p></p> tags

    Line 14 showing the paragraph tag.

    <!DOCTYPE html>
    <html lang="en">
     
    <head>
      <meta charset="utf-8">
      <meta name="author" content="Goofy Bertwinkle">
      <meta name="description" content="List of movies"
      <meta name="keywords" content="movies, film, animation"
      <title>Paragraph tag</title>
    </head>
     
    <body>
      <h1>Big Joke Heading</h1>
      <p>I remember how embarrassed I was when I couldn’t pay my electric bill. It was the darkest day of my life.</p>
      <hr>
    </body>
     
    </html>
    

    screenshot-paragraph.png


Log in to reply
 

© Lightnetics 2024