Program3
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Styled HTML Page</title> <link rel="stylesheet" href="lab3.css"> </head> <body> <!-- h2 and h3 tags with custom styles --> <h2>This is Heading 2</h2> <h3>This is Heading 3</h3> <!-- Horizontal rule --> <hr> <!-- Paragraph with default styles --> <p>This is a simple paragraph styled with a class selector.</p> <!-- div with id for specific styling --> <div id="main-content"> <p>Content inside a div styled with an ID selector. This paragraph belongs to the main content section.</p> <span class="highlight">This text is highlighted with a class selector.</span> </div> <!-- Time element with custom styling --...