scrimba
Frontend Career Path
Web dev basics
Build a digital Business Card
Aside: flexbox child containers
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

Aside: flexbox child containers
AboutCommentsNotes
Aside: flexbox child containers
Expand for more info
index.html
run
preview
console
<html>
<head>
<link rel="stylesheet" href="index.css">
</head>
<body>
<h1>Upgrade to Pro</h1>

<div class="pricing">
<h2>For individuals</h2>
<ul>
<li>1 gb</li>
<li>No support</li>
</ul>
<button>Buy now</button>
<h2>For enterprise</h2>
<ul>
<li>10 gb</li>
<li>Priority support</li>
</ul>
<button>Contact us</button>
</div>

</body>
</html>
Console
/index.html
-3:37