JSFiddle - React, Tailwind, and code Playground

by Nick Hulea

HTML

<html>

  <head>
    <title>Sample HTML document</title>
  </head>

  <body>
    <div id="container" class="wrapper" style="width:100%; height:100%;">
      <div id="content">Hello World</div>
    </div>
  </body>

</html> 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 < ! DOCTYPE html>
  < html>
    < head>
      < title> Sample HTML document < / title>
          < / head>
            < body>
              < div id="container" class="wrapper" style="width:100%">
                < div id="content"> Hello World < / div>
                    < / div>
                      < / body>
                        < / html>