scrimba
Code Reviews
Code Review: Sunnyside's Solo Project: Hometown Homepage
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

Code Review: Sunnyside's Solo Project: Hometown Homepage
AboutCommentsNotes
Code Review: Sunnyside's Solo Project: Hometown Homepage
Expand for more info
index.html
run
preview
console
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class = "container">
<!-- HERO SECTION -->
<div class = "hero">
<h1 class="Torshov">Visit Torshov</h1><!--generally don't use capital letters for class name -->
<h2 class="second">Enjoy culture and sports in this vibrant district close to the center of Oslo.</h2> <!--make class name more descriptive-->
</div><!--end of hero-->

<!-- ACTIVITIES SECTION -->
<div class = "second-hero">
<h3 class = "third">Top three activities to do at Torshov</h3>
<div class = "images">
<img src="images/park.jpg"><!--add alt tags for all images -->
<img src="images/theatre.jpg">
<img src="images/sports.jpg">
</div>
<div class = "first-desc">
<div> asdf </div>
<div> asdf </div>
<div> asdf </div>
</div>
<div class = "second-desc">
<div> asdf </div>
<div> asdf </div>
<div> asdf </div>
</div> <!--make sure indents are consistent-->

</div>
<!-- GUIDE SECTION -->
<div class = "bottom-container">
<img id = "profile" src="images/per.jpg">
<div class = "bottom-text">
<h3>Your guide</h3>
<p>"I have lived at Torshov for over 30 years, so I can show you all of its best parts and hidden secrets."</p>
<h4>Per Harald Borgen</h4>
</div>
</div>
</div><!--end of container-->
</body>
</html>
Console
/index.html
-9:27