JSFiddle - React, Tailwind, and code Playground

by ClarenceDowns

HTML

<!DOCTYPE html>
<html>

  <head>
    <meta charset="utf-8">
    <title>My web page</title>
    <style>
    h2 {
      color: green;
    }
    body {
      background-color: blue
    }
    </style>
  </head>

  <body>
    <h1>
      All About Rabbits
    </h1>
    <img src="https://images.unsplash.com/photo-1516632664305-eda5d6a5bb99?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&w=1000&q=80" alt="a picture of a furry rabbit" width="200">
    <h2>
      Why Rabbits Make Great Pets
    </h2>
    <ul>
      <li>They're furry!</li>
      <li>Great Listeners</li>
      <li>Eat all you carrots</li>
    </ul>
    <h2>
    Basic Info
    </h2>
    <p>
    Rabbits arel little creatures with lon ears and puffy tails, and the move their nose<br>
    and down in an adorabel way. They eat the most orange vegetables in <em>our</em>world, and<br>
    <strong>they reproduce more that any human <em>ever</em> has</strong>
    </p>
  </body>

</html>