JSFiddle - React, Tailwind, and code Playground

by Malik Naik

HTML

<div id="wrapper">
			<!-- Header (Logo and Nav) -->
			<div id="header">
				<div id="nav">
					<ul>
						<li><a href="#">Products</a></li>
						<li>|</li>
						<li><a href="#">Products</a></li>
						<li>|</li>
						<li><a href="#">Blog</a></li>
						<li>|</li>
						<li><a href="#">Support</a></li>
						<li>|</li>
						<li><a href="#">AdWords Grader</a></li>
					</ul>
					<form id ="login">
						<label>
							<button class="button" type="button">Login</button>
						</label>
					</form>			
				</div>

				<div id="logo">
					<img src="https://doc-0g-88-docs.googleusercontent.com/docs/securesc/ha0ro937gcuc7l7deffksulhg5h7mbp1/bqh4blnfbtbj0uggpn50p8scqite4cf3/1436659200000/12316681133086041692/*/0B1cxsuKTipwYZUZXTTVmUmJSajg" alt="Logo">
					<span id="word">Word</span>
					<span id="stream">Stream</span>
				</div>
			</div>
			<!-- Main content section -->
			<div id="main-page">
				<div id="banner">
					<h1>WordStream Internet Marketing Software</h1>
				</div>
				<!-- main side of page -->
				<!-- Side bar (info and Advertisment) -->
				<div id="side-bar">
					<div id="side-bar-content">
						<h1>Wordstream for PPC</h1>
						<h2>Drive More Profits Through PPC!</h2>
						<p>Get Started with <span class="blue">Wordstream</span>'s Powerful PPC Platform Today</p>
						<form>
							<label>
								<button class="button1" type="button">SCHEDULE DEMO</button>
							</label>
							<label>
								<button class="button2" type="button">FREE TRIAL</button>
							</label>
						</form>
						<p class="center">(No Credit Card Required)</p>
					</div>
					<!-- side bar ad -->
					<div id="side-bar-ad">
						<div id="wrap-img-text">
							<h3>How does your adWords performance measure up?</h3>
							<p>Get a free, instant report with the WordStream Adwords Performance Grader</p>
							<form>
								<label>
									<button class="graded" type="button">Get Graded Today</button>
								</label>
							</form>
						</div>
						<img...

CSS

*{
	margin: 0px;
	padding: 0px;
	font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
}
#wrapper{
	width: 1000px;
	margin: 0px auto;
}
/*HEader things*/
#header{
	width: auto;
	position: relative;
	height: 100px;
}
#logo{
	display: block;
	text-align: left;
	position: absolute;
	bottom: 0px;
}
#logo img{
	vertical-align: text-bottom;
	width: 50px;
}
#word{
	color: grey;
	font-family: Tahoma, Geneva, sans-serif;
	font-size: 35px;
}
#stream{
	color: blue;
	font-family: Tahoma, Geneva, sans-serif;
	font-size: 35px;
}
#nav{
	display: block;
	margin: 10px 30px;
	position: absolute;
	right: 0px;
}
#nav ul{
	display: inline-block;
	background-color: #F0F0F0;
	border-radius: 5px;
	padding: 0px 10px 5px;
	padding-bottom: 7px;
}
#nav li{
	display: inline-block;
	font-size: 12px;
	vertical-align: middle;
}
#login{
	display: inline-block;
	margin-left: 20px;
}
.button{
	width: 60px;
	height: 25px;
	background-color: blue;
	border-radius: 5px;
	border: 0px;
	color: white;
}
/*Banner right under header*/
#banner{
	background-color: blue;
	padding: 5px 10px;
	margin: 15px 0px;
	font-size: 10px;
	box-shadow: 0px 50px 200px grey;
}
#banner h1{
	color: white
}
/*sidebar*/
#side-bar{
	display: inline-block;
	width: 220px;
}
#side-bar-content{
	border-bottom: 1px solid lightgrey;
	margin-bottom: 10px;
	padding-bottom: 10px;
}
#side-bar h1{
	font-size: 15px;
	color: blue;
}
#side-bar h2{
	font-size: 12px;
	color: darkred;
}
#side-bar p{
	font-size: 11px;
}
.button1{
	border: 0px;
	background-color: blue;
	color: white;
	width: 220px;
	padding: 3px 0px;
	margin-bottom: 3px;
	border-radius: 5px;
}
.button2{
	border: 0px;
	background-color: orange;
	color: white;
	width: 220px;
	padding: 3px 0px;
	border-radius: 5px;
}
.center{
	text-align: center;
}
/*Bottom half of sidebar*/
#side-bar-ad{
	position: relative;
}
#wrap-img-text{
	position: absolute;
	left: 0px;
	top: 0px;
	padding: 10px;
}
#wrap-img-text h3{
	font-size: 15px;
	padding: 5px;
	color: blue;
}
#wrap-img-text...