<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>Avatar Creator</title>
  <link rel="stylesheet" href="style.css">
</head>
<body>

<h2>Avatar Creator</h2>

<div class="container">

  <!-- Avatar preview -->
  <svg id="avatar" viewBox="0 0 300 300">
    <rect id="bg" width="300" height="300" fill="#e0e0e0"/>
    <g id="face"></g>
    <g id="eyes"></g>
    <g id="mouth"></g>
    <g id="hair"></g>
  </svg>

  <!-- Controls -->
  <div class="controls">
    <button onclick="setFace('round')">Face</button>
    <button onclick="setEyes(1)">Eyes</button>
    <button onclick="setMouth('smile')">Mouth</button>
    <button onclick="setHair('short')">Hair</button>
    <button onclick="download()">Download PNG</button>
  </div>

</div>

<script src="app.js"></script>
</body>
</html>
