scrimba
Frontend Career Path
Essential CSS concepts
Build an NFT Site
Aside: Inline-block
Go Pro!Bootcamp

Bootcamp

Study group

Collaborate with peers in your dedicated #study-group channel.

Code reviews

Submit projects for review using the /review command in your #code-reviews channel

AboutCommentsNotes
Aside: Inline-block
Expand for more info
index.html
run
preview
console
<html>

<head>
<link href="https://fonts.googleapis.com/css?family=Roboto:400,900&display=swap" rel="stylesheet">
<link rel="stylesheet" href="index.css">
</head>

<body>
<div class="ad-container">
<div class="text-container">
<h2>Ferrari track day</h2>
<p>
Experience the thrill of driving at the edge!
Grab our early-bird deal for a 30% saving!
</p>
<a href="">Bookings</a>
<a href="">View other offers</a>
</div>
</div>
</body>

</html>
Console
/index.html
-3:34