scrimba
Learn Accessibility
Aside: Use of color
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
Aside: Use of color
Expand for more info
index.html
run
preview
console
<html>
<head>
<title></title>
<link rel="stylesheet" href="index.css">
</head>
<body>
<div class="user-card">
<img src="images/stuart-the-minion.png" alt="User's name" class="profile-pic">
<div class="user-info">
<h3>Stuart the Minion</h3>
<div class="status">
<div class="indicator"></div>
</div>
</div>
</div>
<div class="user-card">
<img src="images/kevin-the-minion.png" alt="User's name" class="profile-pic">
<div class="user-info">
<h3>Kevin the Minion</h3>
<div class="status">
<div class="indicator offline"></div>
</div>
</div>
</div>
</body>
</html>
Console
/index.html
-1:18