scrimba
Frontend Career Path
Essential CSS concepts
Challenges
CSS Fundamentals: Challenge #10 - Working with what you have
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 #10 - Working with what you have
AboutCommentsNotes
CSS Fundamentals: Challenge #10 - Working with what you have
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="accent-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="accent-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>
<a href="#" class="btn">See my work</a>
</div>
</section>


<section class="articles inverse">
<div class="container">
<h2>My most recent <span class="accent-text">article</span></h2>
<article>
<h3>Design systems that scale</h3>
<p class="small-text">Writen by <span class="name">Sophie</span> on <time datetime="2020-06-19">June 19, 2020</time></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>
<a href="#" class="btn">See all my work</a>
</article>
</div>
</section>

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