<!DOCTYPE html>

<html lang="en">

<head>

  <meta charset="UTF-8" />

  <title>Contact — Avenue C Projects</title>

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


  <style>

    * {

      box-sizing: border-box;

    }


    body {

      margin: 0;

      min-height: 100vh;

      display: flex;

      align-items: center;

      justify-content: center;

      background: #ffffff;

      font-family: Arial, Helvetica, sans-serif;

    }


    .wrap {

      text-align: center;

    }


    a {

      color: #000;

      text-decoration: none;

      font-size: 18px;

      letter-spacing: 0.05em;

    }

  </style>

</head>


<body>

  <div class="wrap">

    <p>Email</p>

    <p>

      <a href="mailto:info@avenuecprojects.com">

        info@avenuecprojects.com

      </a>

    </p>

  </div>

</body>

</html>