-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhtml
More file actions
135 lines (68 loc) · 2.41 KB
/
html
File metadata and controls
135 lines (68 loc) · 2.41 KB
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Instagram Feed Clone</title>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.14.0/css/all.min.css">
</head>
<body>
<header>
<div class="header-left">
<i class="fas fa-camera-retro"></i>
<h1>Instagram</h1>
</div>
<form class="header-right">
<input type="text" placeholder="Search">
<button type="submit"><i class="fas fa-search"></i></button>
</form>
</header>
<main>
<div class="sidebar">
<div class="sidebar-item">
<img src="profile-picture.jpg" alt="Profile picture" class="profile-picture">
<span class="username">instagram_username</span>
</div>
<div class="sidebar-item">
<i class="fas fa-home"></i>
<span>Home</span>
</div>
<div class="sidebar-item">
<i class="fas fa-hashtag"></i>
<span>Explore</span>
</div>
<div class="sidebar-item">
<i class="fas fa-heart"></i>
<span>Likes</span>
</div>
<div class="sidebar-item">
<i class="fas fa-user"></i>
<span>Profile</span>
</div>
</div>
<div class="feed">
<div class="post">
<div class="header">
<img src="profile-picture.jpg" alt="Profile picture" class="profile-picture">
<span class="username">instagram_username</span>
<i class="fas fa-ellipsis-h"></i>
</div>
<img src="post-image.jpg" alt="Post image" class="post-image">
<div class="actions">
<i class="fas fa-heart"></i>
<i class="fas fa-comment"></i>
<i class="fas fa-paper-plane"></i>
</div>
<div class="likes">
<span class="username">instagram_username</span>
<span>liked this</span>
</div>
<div class="caption">
<span class="username">instagram_username</span>
<span class="text">Caption for the post goes here</span>
</div>
<div class="comments">
<div class="comment">
<span class="username">instagram_username</span>
<span class="text">Comment for the post goes here</span>
</div