scrimba
Preview
Info Card Component
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

Info Card Component
AboutCommentsNotes
Info Card Component
Expand for more info
card.html
run
preview
console
<html>
<head>
<link href="https://unpkg.com/tailwindcss@^1.0/dist/tailwind.min.css" rel="stylesheet">
<link href="styles.css" rel="stylesheet">
</head>

<body>

<div class="card">
<div class="card-title">Your Instructor</div>
<div class="card-circle">VG</div>
<div class="card-name">
<div class="light-font">Victor</div>
<div>Gonzalez</div>
</div>
<div class="card-company">Coder's Tape</div>
</div>

</body>
</html>
Console
/card.html
-12:55