scrimba
Responsive Design
Taking it to the next level
The HTML for the homepage
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

The HTML for the homepage
AboutCommentsNotes
The HTML for the homepage
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>

</header>

<main></main>

<footer></footer>
</body>
</html>
Console
index.html
-3:38