scrimba
CSS Challenges
Solution: Playing Card - 4 of Hearts
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

Solution: Playing Card - 4 of Hearts
AboutCommentsNotes
Solution: Playing Card - 4 of Hearts
Expand for more info
index.html
run
preview
console
<!doctype html>
<html>
<head>
<title></title>
<link rel="stylesheet" href="index.css">
</head>
<body>
<div class="container">
<div class="card">
<div class="left">
<div>4</div>
<div>&hearts;</div>
</div>
<div class="middle">
<div>&hearts;</div>
<div>&hearts;</div>
<div>&hearts;</div>
<div>&hearts;</div>
</div>
<div class="right">
<div>4</div>
<div>&hearts;</div>
</div>
</div>
</div>
</body>
</html>
Console
/index.html
-4:49