scrimba
CSS - It's all in the presentation!
Adding rounded borders and backgrounds
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

Adding rounded borders and backgrounds
AboutCommentsNotes
Adding rounded borders and backgrounds
Expand for more info
index.html
run
preview
console
  
<html>
<head>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Chicle&display=swap" rel="stylesheet">
<link type="text/css" rel="stylesheet" href="css/styles.css">
<title>Rocky the Rottweiler/Lab</title>
</head>
<body>
<h1>Meet Rocky!</h1>
<p>Rocky is a black and tan <a href="#">rottweiler/labrador mix</a></p>
<ul>
<li>is 8 years old</li>
<li>loves going to the beach, swimming, and playing fetch</li>
<li>loves to eat and sleep too!</li>
</ul>
<img src="images/rocky.jpg" alt="Rocky the rottweiler/labrador dog" />
</body>
</html>
Console
/index.html
-3:45