<html>
<head>
<title>HTML aside tag example</title>
<style>
aside {
color:#6a67ce;
background-color: #f9f9f9;
padding:10px;
border: solid 2px #f5f5f5;
}
</style>
</head>
<body>
<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>
<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>
</body>
</html>