scrimba
HTML - Creating Your First Webpage with Scrimba
Title and body elements
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

Title and body elements
AboutCommentsNotes
Title and body elements
Expand for more info
index.html
run
preview
console
<!-- this is a comment - all text must be placed between these symbols: <!--  --> 
<!-- it doesn't render in the preview window -->
<!-- Follow the comments below and click the run button to show the changes you make to the code -->
<!-- The preview window will show your updated code! -->
<html>
<head>
<!-- Give your page a title -->
</head>
<body>
<h1>Meet Rocky!</h1>
<p>Rocky is a black and tan Rottweiler/Labrador mix</p>
</body>
</html>
Console
/index.html
-2:40