scrimba
Note at 2:40
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

Note at 2:40
AboutCommentsNotes
Note at 2:40
Expand for more info
index.html
run
preview
console
<html>
<head>
<link rel="stylesheet" href="index.css">
</head>
<body>

<div class="container">
<button class="previous" alt="previous image"><img src="previous.svg"></button>
<div class="gallery-wrapper">
<div class="gallery">
<img class="card current" src="presents.jpg" alt="Presents">
<img class="card" src="cookies.jpg" alt="Christmas Cookies">
<img class="card" src="santa.jpg" alt="Cool Santa">
<img class="card" src="candycane.jpg" alt="Candycane">
<img class="card" src="reindeer.jpg" alt="Reindeer">
</div>
</div>
<button class="next" alt="next image"><img src="next.svg" ></button>

</div>

<script src="index.pack.js"></script>

</body>
</html>
Console
1
,
2
,
/index.html
LIVE