scrimba
Frontend Career Path
Essential CSS concepts
Build a Coworking Space Site
z-index challenge
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
z-index challenge
Expand for more info
index.html
run
preview
console
<!doctype html>
<html>

<head>
<title>FashionTrendz</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@400&display=swap" rel="stylesheet">
<link rel="stylesheet" href="index.css">
</head>

<body>
<main>
<section class="container">
<div class="title-text">
<h1>FashionTrendz</h1>
</div>
<div class="box box-1">
<img src="/shoes.png" alt="A colleaction of stylish, colourful shoes">
</div>
<div class="box box-2">
<img src="/woman.png" alt="A woman in a smart suit walking between large buildings">
</div>
<div class="box box-3">
<img src="/man.png" alt="A man wearing stylish glasses">
<div class="attribution-container">
<p>All images: GriftStock</p>
</div>
</div>
<div class="box box-4">
<img src="/jewellery.png" alt="A display of mdoern jewellery">
</div>
</section>
</main>
<script src="index.js"></script>
</body>

</html>
Console
/index.html
-2:23