scrimba
Frontend Career Path
Essential JavaScript concepts
Twitter Clone
Aside: TextArea
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: TextArea
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&display=swap" rel="stylesheet">
</head>
<body>
<header>
<h1>Useless Chatbot</h1>
<img src="chatbot.svg">
</header>
<main>
<div class="container">
<!-- textarea here -->
<button id="talk-btn">Talk to me!</button>
</div>
</main>
<script src="index.pack.js"></script>
</body>
</html>
Console
/index.html
-3:29