JSFiddle - React, Tailwind, and code Playground
by samizdam
HTML
<link rel="stylesheet" href="//netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap.min.css">
<body>
<section id="page">
<aside id="profile"><a href="#profile">profile</a></aside>
<div class="container">
<nav>
<a href="">top</a>
<a href="">models</a>
</nav>
<article class="span8 offset2">
<button href="#" class="btn btn-success">START</button><br/>
<button href="#" class="btn">custom your tour</button>
</article>
</div>
<footer>
<address>
<ul>
<li><a href="">rules</a></li>
<li><a href="">feedback</a></li>
<li><a href="">stat</a></li>
</ul>
</address>
</footer>
</section>
</body>
CSS
#page{
background: black;
height: 100%;
width: 100%;
}
#profile{
float: right;
}
footer address ul li {
display: inline;
}