scrimba
Code Reviews
Code Review: Ajo's Solo Project - Inspirational Quote Page
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: Ajo's Solo Project - Inspirational Quote Page
AboutCommentsNotes
Code Review: Ajo's Solo Project - Inspirational Quote Page
Expand for more info
index.html
run
preview
console
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="index.css">
<!-- Google fonts -->
<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=Inter:wght@400;600&display=swap" rel="stylesheet">
</head>
<body id="background-container">
<a href="https://scrimba.com/learn/frontend" target="_blank">
<div class="quotes-container" id="quotes-container">
<!-- Quotes here -->
</div>
</a>
<script src="index.js" type="module"></script>
</body>
</html>
Console
/index.html
-6:23