JSFiddle - React, Tailwind, and code Playground

by Littledoggy12

HTML

<html>
  <head>
    <title>My first platformer (test)</title>
  </head>
  <body>
    <div id = "character"></div>
    <h1 id = "variable"></h1>
  </body>
</html>

CSS

body {
  background: cyan;
}

#character {
  position: absolute;
  background: black;
  height: 3em;
  width: 3em;
  border-radius: 100%;
}