You are on page 1of 1

 

                                                 PROGRAM -4

Object : Design a static webpage using HTML.

<!DOCTYPE html>

<html>

  <head>

    <title>My Static Webpage</title>

  </head>

  <body>

    <h1>Welcome to my webpage</h1>

    <p>This is a paragraph of text.</p>

    <ul>

      <li>List item 1</li>

      <li>List item 2</li>

      <li>List item 3</li>

    </ul>

    <p>Here's an image:</p>

    <img src="https://via.placeholder.com/350x150" alt="Placeholder Image">

    <p>Thanks for visiting!</p>

  </body>

</html>

You might also like