JSFiddle - React, Tailwind, and code Playground

HTML

<div id="content_outer">
    <header>
        <a href="#">Website Title</a>
    </header>
    
    <div id="content_inner">
        "Welcome to this website blabla"
    </div>
    
    <footer>
        <ul>
            <li>&copy; 2013 - <a href="#">Website Title</a>. All rights reserved.</li>
            <li><a href="#"><span>FAQ</span></a></li>
            <li><a href="#"><span>ToS</span></a></li>
            <li><a href="#"><span>Privacy</span></a></li>
        </ul>
    </footer>
</div>

CSS

a:focus, input:focus, img:focus, li:focus {
	outline: none;
}

a {
	color: #666;
	text-decoration: none;
}

a:hover {
	color: #222;
	text-shadow: 0 1px 0 rgba(255, 255, 255, .3);
}

ul {
    margin: 0;
    padding: 0;
}

li {
	list-style-type: none;
}

body {
	background: #fefefe;
	font: 9pt 'Helvetica', Arial, sans-serif;
	font-weight: 400;
	color: #656565;

	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
	-webkit-font-smoothing: antialiased;
}

#content_outer {
	position: relative;
	width: 500px;
	min-height: 300px;
}

header {
	background: #ccc;
	padding: 10px;
	min-height: 40px;
    text-align: center;
    font-size: 25pt;
}

header a {
    color: #666;
    text-decoration: none;
    text-shadow: 0 1px 0 rgba(255, 255, 255, .3);
}

#content_inner {
	background: #ddd;
	padding: 10px;
	min-height: 100px;
}

footer {
	background: #ccc;
	width: 100%;
	min-height: 20px;
    overflow: hidden;
}

footer li {
	position: relative;
	display: inline-block;
	padding: 6px 8px;
	text-align: center;
}

footer li:nth-child(1) {
	float: left;
}

footer li:nth-child(n+2) {
	float: right;
}

JavaScript

$(function () {
    // All DOM Ready Logic here
});

function customFunc() {
    // Custom Function Logic
    // Without Document Ready Requirement
}