<section>
<aside>
<b>Code Basics</b>
<p>Programming courses</p>
</aside>
<main>
<p>The easiest way to experience coding right in your browser, Code Basics is an online platform featuring free programming tutorials and an interactive coding environment. Every lesson comes with an exercise to practice.</p>
<p>The source code of the CodeBasics platform, and all its lessons and exercises, are available on GitHub.</p>
</main>
</section>
:root {
--aside-width: 200px;
}
body {
margin: 0;
font: 18px/1.5 sans-serif;
}
section {
display: flex;
}
aside {
position: fixed;
top: 1em;
left: 1em;
width: var(--aside-width);
height: 100%;
}
main {
margin-left: calc(var(--aside-width) + 1em);
}
This Pen doesn't use any external CSS resources.
This Pen doesn't use any external JavaScript resources.