scrimba
Frontend Career Path
Essential CSS concepts
Challenges
CSS Fundamentals: Challenge #8 - Creating buttons
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

CSS Fundamentals: Challenge #8 - Creating buttons
AboutCommentsNotes
CSS Fundamentals: Challenge #8 - Creating buttons
Expand for more info
index.html
run
preview
console
<!DOCTYPE html>
<html>
<head>
<title>HTML & CSS Fundamentals | Challenges</title>
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@300;900&display=swap" rel="stylesheet">
<link href="css/style.css" rel="stylesheet">
</head>
<body>

<header class="inverse">
<div class="container">
<h1>Hello, my name is <span class="bold-text">Sophie</span></h1>
<img src="img/sophie.png" alt="portrait of Sophie">
</div>
</header>


<section class="about-me">
<div class="container">
<h2>I am a <span class="bold-text">graphic designer</span></h2>
<p>Ultricies morbi urna lectus magna quisque ultricies velit enim nisi mi volutpat amet id id porta auctor at viverra consequat turpis quam enim amet vulputate.</p>
</div>
</section>


<section class="articles inverse">
<div class="container">
<h2>My most recent <span class="bold-text">article</span></h2>
<article>
<h3>Design systems that scale</h3>
<p class="small-text">Writen by Sophie on June 19, 2020</p>
<p>Ultricies morbi urna lectus magna quisque ultricies velit enim nisi mi volutpat amet id id porta auctor at viverra consequat turpis quam enim... <a href="#">continue reading</a></p>
</article>
</div>
</section>

</body>
</html>
Console
/index.html
-2:57