Heya! In this course, we’ll build on HTML and look into the fundamentals of CSS, the secret sauce of every beautiful web page.

Before we get started, let's see what this snippet of HTML and CSS code does.

<html>
 <head>
  <style>body {background-color: #00cd6f;color: #ffffff</style>
 </head>
 <body>I'm back!
 </body>
</html>
]]>

Sweet! Now you may ask: "Is this it?" The answer is no, we're just warming up!