<!DOCTYPE html>

<html lang="en">

<head>

  <meta charset="UTF-8" />

  <meta name="viewport" content="width=device-width, initial-scale=1.0" />

  <title>Your Name</title>

  <meta name="description" content="One simple sentence about what you do." />

  <style>

    body {

      margin: 0;

      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

      background: #ffffff;

      color: #111;

      display: flex;

      align-items: center;

      justify-content: center;

      height: 100vh;

      text-align: center;

    }

    h1 {

      font-size: 42px;

      margin-bottom: 10px;

    }

    p {

      font-size: 18px;

      color: #444;

    }

    a {

      color: #111;

      text-decoration: none;

      border-bottom: 1px solid #ccc;

    }

    a:hover {

      border-bottom: 1px solid #111;

    }

  </style>

</head>

<body>

  <div>

    <h1>Your Name</h1>

    <p>One simple sentence about what you do.</p>

    <p>

      <a href="mailto:you@yourdomain.com">Email</a>

    </p>

  </div>

</body>

</html>