scrimba
Build Components in HTML, CSS & JS
Page Theme Selector - Introduction πŸ“
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

Page Theme Selector - Introduction πŸ“
AboutCommentsNotes
Page Theme Selector - Introduction πŸ“
Expand for more info
index.html
run
preview
console
<!DOCTYPE html>
<html lang="en">
<head>
<link href="https://fonts.googleapis.com/css2?family=Merriweather:wght@400;700&family=Open+Sans:wght@400;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="index.css">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Component 4 - Page Theme Selector</title>
</head>
<body>

<h1>The Page</h1>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Cum iure, praesentium vero laudantium porro repellat perferendis. Veniam ut corporis itaque.</p>

<script type="text/javascript" src="index.js"></script>
</body>
</html>
Console
/index.html
-2:07