scrimba
Frontend Career Path
Working with APIs
Promise Rejection
Chrome extension time!
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
Chrome extension time!
Expand for more info
index.html
run
preview
console
<html>
<head>
<meta charset="UTF-8" />
<link rel="stylesheet" href="index.css">
<title>Personal Dashboard</title>
</head>
<body>
<main>
<div class="top">
<div id="crypto">
<div id="crypto-top"></div>
</div>
<div id="weather"></div>
</div>

<h1 id="time" class="time"></h1>
<p id="author"></p>
</main>
<script src="index.js"></script>
</body>
</html>
Console
/index.html
-8:10