-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
44 lines (40 loc) · 1.71 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
39
40
41
42
43
44
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Scaler School Handle</title>
<link rel="stylesheet" href="style.css">
<script src="script.js" defer></script>
</head>
<body>
<nav>
<div class="nav-img-1">
<img src="https://d2beiqkhq929f0.cloudfront.net/public_assets/assets/000/064/033/original/SST_Logo.png?1706888781" alt="Scaler logo" >
</div>
<div class="nav-img-2">
<img src="https://d2beiqkhq929f0.cloudfront.net/public_assets/assets/000/064/032/original/scaler-social.png?1706888764" alt="" >
</div>
</nav>
<hr class="navline">
<div class="leftandright">
<div class="left-side">
<div class="left-content">
<h2>Post Your Thoughts here!</h2>
<div class="posting-block">
<div class="posting">
<img src="https://d2beiqkhq929f0.cloudfront.net/public_assets/assets/000/064/031/original/profile_image.png?1706888739" alt="posting logo">
<textarea rows="10" cols="50" placeholder ="Type your thoughts here....." class="textarea-posting" maxlength="100"></textarea>
</div>
<div class="word-count-button">
<p><span id="char-count">0</span>/100</p>
<button onclick="post()" class="post-button">Post</button>
</div>
</div>
</div>
</div>
<div class="right">
<h2>Your Feed</h2>
</div>
</div>
</body>
</html>