-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
73 lines (69 loc) · 2.75 KB
/
Copy pathindex.html
File metadata and controls
73 lines (69 loc) · 2.75 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Instagram Clone</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<nav>
<div class="nav-wrapper">
<input type="text" class="search-box" placeholder="Search">
<div class="nav-items">
<img src="asset_repilca/Message.svg" class="icon" alt="Messages">
<img src="asset_repilca/addpost.svg" class="icon" alt="Add Post">
<div class="icon user-profile"></div>
</div>
</div>
</nav>
</header>
<aside class="leftaside">
<div class="profile">
<img src="asset_repilca/Logo.svg" class="bb" alt="Instagram Logo">
<img src="asset_repilca/INSTAGRAM.svg" class="bb" alt="Instagram Logo">
</div>
<div class="profile">
<img src="asset_repilca/DP.svg" class="avatar" alt="Profile Picture">
<h2>Sofi White</h2>
<p>Posts: 56</p>
<p>Followers: 3.8k</p>
<p>Following: 957</p>
</div>
<div class="sidebar">
<ul>
<li><img src="asset_repilca/Home.svg" class="icon" alt="Home"> Home</li>
<li><img src="asset_repilca/Search.svg" class="icon" alt="Search"> Search</li>
<li><img src="asset_repilca/Reels.svg" class="icon" alt="Reels"> Reels</li>
<li><img src="asset_repilca/shopping.svg" class="icon" alt="Shopping"> Shopping</li>
<li><img src="asset_repilca/account.svg" class="icon" alt="Account"> Account</li>
<li><img src="asset_repilca/menu.svg" Class="icon" alt="Menu">Menu</li>
</ul>
</div>
</aside>
<main>
<div class="feed">
<div class="stories-section">
<div class="story">
<img src="asset_repilca/Story user 0.svg" alt="User Story 0">
</div>
<div class="story">
<img src="asset_repilca/Story user-1.svg" alt="User Story 1">
</div>
<div class="story">
<img src="asset_repilca/Story user-2.svg" alt="User Story 2">
</div>
<div class="story">
<img src="asset_repilca/Story user-3.svg" alt="User Story 3">
</div>
<div class="story">
<img src="asset_repilca/Story user-4.svg" alt="User Story 4">
</div>
</div>
</div>
</main>
<footer>
</footer>
</body>
</html>