JSFiddle - React, Tailwind, and code Playground

by totoromaum

HTML

<!DOCTYPE html>
  <title> Our awesome website</title>
   <body>
<h1 style = "color:RED; background-color: black; text-align:center">Header</h1>  
<p style = "color:red; background-color:black; text-align:center;margin-left:150px; margin-right: 150px"> This is a awesome paragraph<br>break<br>break<br>break<br>break<br>break</p> 

<table style = "border: 5px solid black; background-color:red; color:yellow" align = "center" width ="100px">
<tr>
  <td> Table 1 </td>
  <td> Table 2 </td>
  <td> Table 3 </td>
  <td> Table 4 </td>
</tr>
<tr>
  <td> Table 1 </td>
  <td> Table 2 </td>
  <td> Table 3 </td>
  <td> Table 4 </td>
</tr>
</table>
   
   </body>