JSFiddle - React, Tailwind, and code Playground

by rbrousla

HTML

<!--  It is easy to make mistakes when you type code. Coding mistakes are called bugs. -->
<!-- Some mistakes don't change the way your page looks, other make it very different. -->
<!-- Consider the following while you try to find them: -->
   <!-- Be careful not to use the wrong tag. -->
   <!-- Don't mix up the forward / and backslash \ mixed up. -->
   <!-- Be careful not to accidentally delete characters in your HTML code.  -->

  <body>
    </h1>Common Bugs</h1>
	
	  <h2>Wrong end tag<\h2>
        </p>Wrong end tags</p>
    
	  <h2>Missing slash<h2>
	    <p>Missing slash</p>

	  <h4>Wrong tag</h4>
	    <q>Wrong tags</p>
		
      <h2>Wrong slash</h2>
	    <p>Wrong slash<\p>
		
      <h2>Deleted character</h2>
	    <p>Deleted characters<>
        </body>