scrimba
HTML - Creating Your First Webpage with Scrimba
Adding images to your webpage
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

Adding images to your webpage
AboutCommentsNotes
Adding images to your webpage
Expand for more info
index.html
run
preview
console
<html>
<head>
<title>Rocky the Rottweiler/Lab</title>
</head>
<body>
<h1>Meet Rocky!</h1>
<p>Rocky is a black and tan Rottweiler/Labrador mix</p>
<ul>
<li>is 8 years old</li>
<li>loves going to the beach, swimming, and playing fetch</li>
<li>loves to eat and sleep too!</li>
</ul>
<!-- Find an image of a rottweiler/lab from pixabay.com and add it below -->
</body>
</html>
Console
/index.html
-4:48