MORE STYLISH ASIDE TAG
Run
<html> 
	<head> 
		<title>More stylish Aside tag</title> 
		<style> 
		    #content {
		        margin:10px;
		        background-color:#f5f5f5;
		        overflow:auto;
		        border-radius:5px;
		    }
			article { 
				width: 50%; 
				float: left; 
				padding:10px; 
				float:left; 
				line-height: 24px;
			} 
			aside { 
				float:right; 
				width: 40%; 
				float: right; 
				background-color: #ff9100; 
				color: white; 
				padding:10px; 
				margin:10px; 
				border-radius:5px;
			} 
		</style> 
	</head> 
	<body> 
	    <div id="content">
    		<article> 
    			<h1>Studytonight.com</h1> 
        		<p>Best place to Learn Coding Online. Interactive Course for HTML, Videos for CSS, Playground for practicing, and so many tutorials to learn different programming languages.</p>
        		<p>Studytonight was started in <b>March 2013</b> and since then it has been working towards bringing in easy to understand, simple content to help beginners learn programming language and computer science subjects.</p>
    		</article> 
    		<aside> 
    			<p>In 2013, our founders were in CDAC, Noida, where they planned to create this website.</p>
    			<p>Noida is a city in Uttar Pradesh state in India.</p>
    		</aside>
		</div>
	</body> 
</html>