scrimba
Responsive Design
Taking it to the next level
The "info" section
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

AboutCommentsNotes
The "info" section
Expand for more info
index.html
run
preview
console
<!DOCTYPE html>
<html>
<head>
<title>Jake & Elwood</title>
<!-- viewport meta to render pages on mobile properly -->
<meta name="viewport" content="width=device-width, initial-scale=1">

<!-- link to google fonts -->
<link href="https://fonts.googleapis.com/css?family=Montserrat:400,700&display=swap" rel="stylesheet">
<!-- link to my CSS -->
<link href="css/style.css" rel="stylesheet">
</head>
<body>
<!-- <header class="header">
<div class="header-content">
<a class="logo-link" href="index.html">
<img src="img/logo.png" alt="" class="logo">
</a>

<nav class="nav">
<ul class="nav-list">
<li class="nav-item"><a href="index.html" class="nav-link">home</a></li>
<li class="nav-item"><a href="about.html" class="nav-link">about us</a></li>
<li class="nav-item"><a href="contact.html" class="nav-link">contact</a></li>
</ul>
</nav>
</div>
</header> -->

<main>
<section class="hero">
<h1 class="hero-title">The only marketing agency on <span class="accent-color">a mission from God</span>, fully dedicated to increase your web traffic. </h1>
<p class="subtitle">We’re two brothers from Chicago that are trying to pay back our debt. We can help you with <strong>SEO, SEM content marketing</strong> and whatever else.</p>
<a href="index.html" class="btn btn-primary">contact</a>
</section>

<section class="info">
<div class="col">
<h2 class="section-title section-title-center">About Us</h2>
<p>We grew up in downtown Chicago, and we used to play in a band. <strong>Jake loves fried chicken</strong>, and <strong>Elwood loves dry white toast</strong>.</p>
</div>
<div class="col">
<h2 class="section-title section-title-center">Our skills</h2>
<p>Elwood is an expert in <strong>SEO, SEM, and driving from the police</strong>. Jake is our <strong>social media specialist</strong>, and he has an amazing voice.</p>
</div>
<div class="col">
<h2 class="section-title section-title-center">Get in touch</h2>
<p>Send us an email with some info about what help you need and <strong>we’ll drive over to your place</strong> in our Bluesmobile the following day to discuss the deal.</p>
</div>
</section>

</main>

<footer>
<div class="footer-main">
<img src="img/logo.png" alt="" class="footer-logo">
<p class="footer-text">Two brothers from Chicago that are just trying to pay back their debt by helping others with their SEO, SEM, and Content Marketing needs.</p>
<p class="footer-fineprint">© Jake&Elwood 2019</p>
</div>
<ul class="social-list">
<li class="social-item"><a href="#" class="social-link"></a></li>
<li class="social-item"><a href="#" class="social-link"></a></li>
<li class="social-item"><a href="#" class="social-link"></a></li>
</ul>
</footer>
</body>
</html>

Console
index.html
-3:32