-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
46 lines (45 loc) · 1.7 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<nav>
<div class="top-bar">
<img src="https://d2beiqkhq929f0.cloudfront.net/public_assets/assets/000/064/033/original/SST_Logo.png?1706888781" >
<img src="https://d2beiqkhq929f0.cloudfront.net/public_assets/assets/000/064/032/original/scaler-social.png?1706888764" >
</div>
</nav>
<div class="delete-modal-container">
<div class="delete-modal">
<img src="https://d2beiqkhq929f0.cloudfront.net/public_assets/assets/000/064/030/original/delete-color-filled.png?1706888714">
<p>
Are you sure you want to permanently delete this tweet?
</p>
<button class="modal-cancel">Cancel</button>
<button class="modal-delete">Delete</button>
</div>
</div>
<div class="container">
<div class="tweet-section">
<p>Post your thoughts here</p>
<div class="tweet">
<img src="https://d2beiqkhq929f0.cloudfront.net/public_assets/assets/000/064/031/original/profile_image.png?1706888739">
<textarea placeholder="Type your thoughts here..."></textarea>
<br>
<div class="tweet-bottom">
<p>0 / 100</p>
<button class="post">Post</button>
</div>
</div>
</div>
<div class="feed-section">
<p>Your Feed</p>
</div>
</div>
<script src="script.js"></script>
</body>
</html>