scrimba
Your first interactive website
Linking to the JavaScript file
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

Linking to the JavaScript file
AboutCommentsNotes
Linking to the JavaScript file
Expand for more info
index.html
run
preview
console
<html>
<head>
<title>HTML & CSS</title>
<link href="css/style.css" rel="stylesheet">
</head>
<body>
<header>
<h1>I'm learning HTML and CSS</h1>
</header>

<main>
<div class="intro">
<h2>HTML and CSS are the building blocks of the web</h2>
<p>Magna fringilla urna porttitor rhoncus dolor purus. Malesuada bibendum arcu vitae elementum. Purus sit amet volutpat consequat. </p>
</div>

<div class="my-skills"> <!-- this has the background -->
<div class="columns"> <!-- width, centered, and flex to make columns -->

<!-- column 1 -->
<div class="column">
<h3>HTML</h3>
<p>Magna fringilla urna porttitor rhoncus dolor purus. Malesuada bibendum arcu vitae elementum. Purus sit amet volutpat consequat. </p>
</div>

<!-- column 3 -->
<div class="column">
<h3>CSS</h3>
<p>Magna fringilla urna porttitor rhoncus dolor purus. Malesuada bibendum arcu vitae elementum. Purus sit amet volutpat consequat. </p>
</div>

<!-- column 3 -->
<div class="column">
<h3>And More</h3>
<p>Magna fringilla urna porttitor rhoncus dolor purus. Malesuada bibendum arcu vitae elementum. Purus sit amet volutpat consequat. </p>
</div>

</div> <!-- / columns -->
</div> <!-- / my-skills -->

</main>
</body>
</html>


<!--
Magna fringilla urna porttitor rhoncus dolor purus. Malesuada bibendum arcu vitae elementum. Purus sit amet volutpat consequat.
-->
Console
/index.html
-4:28