HTML5

../public/snippets/html.html

HTML5 is the fundamental building block of the web, enabling the creation of structured and accessible pages.

With over three years of experience working with HTML, I have a deep understanding of its syntax and capabilities.

I have used HTML5 in various projects, optimizing structure and performance for web applications.

[SVG][ARIA][Web Components]
<!doctype html>
<html lang="en">
  <head>
    <meta charset="UTF-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <meta name="author" content="Ernesto Alonso" />
    <meta
      name="description"
      content="Ernesto Alonso - Software Engineer with 3 years of experience from Arequipa, Peru."
    />
    <title>Ernesto Alonso - Software Engineer</title>
    <link rel="stylesheet" href="styles.css" />
  </head>
  <body>
    <header>
      <h1>Ernesto Alonso</h1>
      <p>Software Engineer</p>
    </header>
    <main>
      <h2>About Me</h2>
      <p>
        Hello! I am <strong>Ernesto Alonso</strong>, a passionate
        <strong>Software Engineer</strong> with <strong>3 years of experience</strong>. I am from
        <strong>Arequipa, Peru</strong>.
      </p>
      <h2>Contact</h2>
      <p>Email: <a href="mailto:ernesto134alonso123@gmail.com">ernesto134alonso123@gmail.com</a></p>
    </main>
    <footer>
      <p>2024 Ernesto Alonso. All rights reserved.</p>
    </footer>
  </body>
</html>