scrimba
Frontend Career Path
Essential JavaScript concepts
Twitter Clone
Recap
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

index.html
run
preview
console
<html>

<head>
<!-- CSS -->
<link rel="stylesheet" href="index.css">
<!-- Font Awesome CDN -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.2.0/css/all.min.css" integrity="sha512-xh6O/CkQoPOWDdYTDqeRdPCVd1SpvCA9XXcUnZS2FmJNp1coAFzvtCN9BmamE+4aHK8yyUHUSCcJHgXloTyT2A==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<!-- Google Fonts -->
<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;500;600&display=swap" rel="stylesheet">
</head>

<body>
<header>
<h1>Twimba</h1>
</header>
<main>
<div class="tweet-input-area">
<img src="images/scrimbalogo.png" class="profile-pic">
<textarea placeholder="What's happening?" id="tweet-input"></textarea>
</div>
<button id="tweet-btn">Tweet</button>
<div class="feed" id="feed">
<!-- Tweets here!! -->
</div>
</main>
<script src="index.js" type="module"></script>
</body>

</html>
Console
/index.html
-3:21