Lesson 4: Enhancing the About Page

HTML (about.html):
<main>
  <section>
    <h2>About Me</h2>
    <p>I am passionate about web development and enjoy learning new technologies.</p>
    <h3>Skills:</h3>
    <ul>
      <li>HTML</li>
      <li>CSS</li>
      <li>JavaScript</li>
    </ul>
  </section>
</main>
CSS:
/* About Page Styles */
main section {
  padding: 20px;
  background-color: white;
  margin: 20px auto;
  max-width: 800px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}