JSFiddle - React, Tailwind, and code Playground

by jteve code

HTML

<!-- index.html -->	
<body>
  <div class="page">
    <p> Hello JTEVE </p>
    <h5> CSS3 </h5>
  </div>
</body>

CSS

/* 
style.css
*/
body{
	font-family: arial, verdana, sans-serif;
	background-color: rgb(185,179,175);
	padding:20px;
}
.page{
	color:rgb(0,255,0);
	background-color : #fefefe;
	padding : inherit; 
	border : 1px solid #665544;
}