scrimba
Frontend Career Path
Essential JavaScript concepts
Meme Picker
Aside: Select Element
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
Aside: Select Element
Expand for more info
index.html
run
preview
console
<!doctype html>
<html>

<head>
<title>Fantasy Adventure</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="index.css">
</head>

<body>
<main>
<section class="container">
<form>


<button type="submit">Reveal My Superpower</button>
</form>
</section>
</main>
<script src="index.js"></script>
</body>

</html>
Console
/index.html?
-6:40