-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
38 lines (35 loc) · 1.39 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
<html>
<head><link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/8.0.1/normalize.css">
<!-- 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>
<div class="reply-pop-up" id="reply-pop-up">
<div class="reply-area-inner">
<img src="images/scrimbalogo.png" class="profile-pic">
<textarea placeholder="Post your reply" id="reply-input"></textarea>
</div>
<button id="reply-btn">Reply</button>
</div>
<script src="index.js" type="module"></script>
</body>
</html>