scrimba
Frontend Career Path
Essential JavaScript concepts
Cookie Consent
Aside: Forms
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: Forms
Expand for more info
index.html
run
preview
console
<html>

<head>
<link rel="stylesheet" href="index.css">
<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=Roboto:wght@400;700&family=Special+Elite&display=swap" rel="stylesheet">
</head>

<body>
<header>
<img src="NASA.png">
</header>
<main>
<!-- form here! -->
</main>
<script src="index.js"></script>
</body>

</html>
Console
/index.html
-7:16