JSFiddle - React, Tailwind, and code Playground
HTML
<hgroup>
<h1>Hello World</h1>
<h2>Home of the Hello World site!</h2>
<img id="title_image" src="helloworld_small.jpg" />
</hgroup>
<article>
Hello World
</article>
CSS
* {
margin:0;
padding:0;
}
html, body {
height:100%;
}
hgroup {
background:#0f0;
height:20%;
}
article {
background-color:#808277;
color:#FEFDDE;
height:80%;
}