scrimba
HTML & CSS
Classes and IDs
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
Classes and IDs
Expand for more info
index.html
run
preview
console
<!DOCTYPE html>
<html>
<head>
<title>All about Earth and Mars</title>
<link href="css/style.css" rel="stylesheet">
</head>
<body>
<h1>Earth and Mars</h1>
<p>Earth and Mars are two planets within our solar system.</p>
<p>Which planet would you like to know better?</p>
<ul>
<li>I would like to <a href="earth.html">know more about earth</a></li>
<li>I would like to <a href="mars.html">know more about mars</a></li>
</ul>
</body>
</html>
Console
earth.html
-16:04