scrimba
CSS Fundamentals
Margin and Padding - Margins and spacing out text
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

Margin and Padding - Margins and spacing out text
AboutCommentsNotes
Margin and Padding - Margins and spacing out text
Expand for more info
index.html
run
preview
console
<html>
<head>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<div class="card">
<h1>Nisl suscipit adipiscing bibendum est ultricies integer quis auctor.</h1>
<p>Netus et malesuada fames ac. Sed cras ornare arcu dui vivamus. Elementum integer enim neque volutpat ac tincidunt vitae semper.</p>
<p class="links">
<a href="#">contact me</a> <a href="#">learn more about me</a>
</p>
</div>
</body>
</html>
Console
index.html
-4:56