Gen name simple example

September 9, 2021 ยท View on GitHub

<html>
  <style>
    #๐Ÿšง๐Ÿ•ฅ๐Ÿ‰ {
      text-transform: uppercase;
    }
    .โ˜˜๐Ÿ‘™๐Ÿ“™ {
      color: blue;
    }
    .โฒ๐Ÿ“‚โš— {
      background: white;
    }
    .js-overlay {
      display: none;
    }
    #js-button {
      color: blue;
    }
    @media (min-width: 768px) {
      .โ˜˜๐Ÿ‘™๐Ÿ“™ {
        color: gray;
      }
    }
  </style>
  <body>
    <svg style="display:none">
      <symbol id="๐Ÿ‘‚๐Ÿ—จ๐ŸŒน"><path d=""></path></symbol>
    </svg>
    <h1 id="๐Ÿšง๐Ÿ•ฅ๐Ÿ‰">Title</h1>
    <p class="โ˜˜๐Ÿ‘™๐Ÿ“™">OMG</p>
    <div class="js-overlay"></div>
    <div id="js-button"></div>
    <div class="โฒ๐Ÿ“‚โš—">
      card content
    </div>
    <svg>
      <use href="#๐Ÿ‘‚๐Ÿ—จ๐ŸŒน"></use>
    </svg>
    <label for="๐Ÿป๐Ÿ”๐Ÿ™">Click me</label>
    <input type="text" id="๐Ÿป๐Ÿ”๐Ÿ™">
  </body>
</html>