forked from am-igdtuw/MENTORSHIP-COHORT1.0
-
Notifications
You must be signed in to change notification settings - Fork 0
/
TASK2(1).html
48 lines (46 loc) · 1.67 KB
/
TASK2(1).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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="styles.css">
<title>Instagram-like Feed</title>
</head>
<body>
<header>
<div class="logo">Instagram</div>
<div class="search-bar">
<input type="text" placeholder="Search">
</div>
<div class="user-profile">
<img src="profile-picture.jpg" alt="Your Profile">
<span>Your Username</span>
</div>
</header>
<main>
<div class="feed">
<!-- Sample post -->
<div class="post">
<div class="post-header">
<img src="user1-profile.jpg" alt="User 1">
<span>User 1</span>
</div>
<img src="post1.jpg" alt="Post 1">
<div class="post-actions">
<button class="like-btn">Like</button>
<button class="comment-btn">Comment</button>
<button class="share-btn">Share</button>
</div>
<div class="post-caption">
<span><strong>User 1</strong> Enjoying a beautiful day! 🌞 #nature</span>
</div>
<div class="post-comments">
<span><strong>User 2:</strong> Looks amazing!</span>
<span><strong>User 3:</strong> Wish I could be there!</span>
</div>
</div>
<!-- More posts can be added here -->
</div>
</main>
</body>
</html>