-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
54 lines (45 loc) · 1.49 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
45
46
47
48
49
50
51
52
53
54
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>WEB-DEV</title>
<link rel="stylesheet" href="index.css">
</head>
<body>
<nav-con>
<section class="nav-bar">
<nav>
<img src="assets/SST_Logo.png" alt="scaler-logo">
<img src="assets/scaler-social.png" alt="scaler-social">
</nav>
</section>
</nav-con>
<section class = "main-container">
<section class = "post-container">
<h3>Post your feelings here</h3>
<div class="box">
<div class="post-con-1">
<div>
<img src="assets/profile_image.png" alt="profile">
<p >@ruthwik</p>
</div>
<div>
<textarea name="#" id="post-area" cols="35" rows="10" style="resize: none;"></textarea>
</div>
</div>
<div class="post-con-2">
<span><span class="character-count">0</span>/100</span>
<button id="post-button">Post</button>
</div>
</div>
</section>
<section class="twit-post">
<h3>Your Feed</h3>
<div class="posts">
</div>
</section>
</section>
<script src="./index.js"></script>
</body>
</html>