JSFiddle - React, Tailwind, and code Playground

by Littledoggy12

HTML

<!Doctype HTML>
<html>
  <head>
    <title>Hello</title>
  </head>
  <body>
    <h1 id="Title">
      Hello!!
    </h1>
    <br>
    <p>
    This is a website. Ta da
    </p>
  </body>
</html>

CSS

body {
  background-color: lightblue;
}

p {
  font-size: 150%;
}

#Title {
  color: red;
}