JSFiddle - React, Tailwind, and code Playground

by steven keezer

HTML

<!DOCTYPE html>

<html>
  <!-- basic html page -->

 <header>
 <font face="verdana" color="green">Basic HTML Page</font>
</header>

  <body>

    <!-- 2 main types of tags: block level & inline -->


    <h1>Hello!</h1>
    <h1>My name is Steven</h1>
    <h1>I love music</h1>
   <h1>I love to cook!</h1>
  
    

    <p>Check out this website:</p>
    <i><h1> https://www.gov.uk/</h1>

  </body>

</html>