Page Contents
In today’s digital age, the design and layout of a website or an application play a pivotal role in attracting users. One such widely popular platform known for its visually appealing interface is Instagram. Its clean, user-friendly design has captivated millions worldwide. For those looking to learn and understand web development, dissecting and recreating Instagram’s UI using HTML templates can serve as an educational and insightful exercise.
Understanding the basics of HTML and CSS is fundamental in replicating any website’s layout. To start, one can create a simple HTML file and structure it with the necessary elements like headers, divs, and sections. These elements form the backbone of the webpage.
1. Create style.css file
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 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 |
html, body { width: 100%; height: 100%; margin: 0; padding: 0; font-family: sans-serif; } main { display: grid; grid-template-columns: 1fr 4fr; width: 100vw; height: 100%; } aside { background-color: #3c3f51; background-color: #f1f1f1; display: flex; flex-direction: column; /* padding: 1em; */ justify-content: center; } aside .profile { display: flex; justify-content: center; align-items: center; flex-direction: column; color: black; } .story-profile-info { display: inline-block; text-align: center; width: 100px; } aside .profile .profile--picture, .story--profile--picture { width: 100px; height: 100px; box-sizing: border-box; padding: 0.2em; display: flex; justify-content: center; align-items: center; /* https://stackoverflow.com/a/53379365 */ background-image: radial-gradient( circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90% ); background-repeat: no-repeat; clip-path: circle(50% at 50% 50%); } .profile--picture-image-wrapper { width: 100%; height: 100%; display: flex; justify-content: center; align-items: center; box-sizing: border-box; border: 0.5em solid #3c3f51; border: 0.3em solid #f1f1f1; border-radius: 100%; } .profile--picture-image-wrapper img { width: 100%; height: 100%; object-fit: cover; border-radius: 100%; border: 0.75em solid transparent; } aside .profile .profile--name h3 { margin: 0.7em; font-size: 1.5vw; } aside .profile .profile--username p { font-weight: 100; color: #b1b1b1; margin: 0; } aside .profile .profile--username p:before { content: "@"; } aside .profile .profile--info { display: flex; justify-content: center; align-items: center; height: 50px; width: 100%; margin-top: 2em; } aside .profile .profile--info .info-item { flex: 1 1 0px; border-right: 0.05em solid #d3d3d3; display: flex; flex-direction: column; justify-content: center; align-items: center; } aside .profile .profile--info .info-item:last-child { border-right: none; } aside .profile .profile--info .info-item .count { margin: 0.5em; color: black; } aside .profile .profile--info .info-item .title { font-weight: 100; font-size: 0.8em; color: #b1b1b1; margin: 0.1em; } aside .tabs { padding: 1em; } aside .tabs .tab-item { color: black; font-weight: 100; padding: 0.7em; font-size: 0.9em; display: flex; align-items: center; } aside .tabs .tab-item .tab-icon svg { width: 15px; height: 15px; margin-right: 10px; } aside .logo { display: flex; justify-content: center; margin: 1em auto; margin-top: -50px; } aside .logo img { width: 100px; } section { background-color: white; overflow-x: hidden; overflow-y: scroll; } section .topnav { padding: 20px; height: 60px; display: flex; align-items: center; justify-content: space-between; flex-direction: row-reverse; } section .topnav .search-container { display: flex; background-color: #ebebeb; width: 160px; border-radius: 5px; order: 4; } section .topnav .search-container div { padding: 10px; color: #b8b8b8; } section .topnav .nav-actions { display: flex; justify-content: space-evenly; flex-direction: row-reverse; width: 200px; align-items: center; } section .topnav .add-photo { border-radius: 5px; padding: 10px; /* https://stackoverflow.com/a/37751377 */ background-color: #2583ff; width: 70px; color: White; background-repeat: no-repeat; text-align: center; margin: auto 5px; font-size: 0.8em; font-weight: 800; } section .topnav .search-container input[type="text"] { padding: 8px; width: 100px; text-align: left; border: none; background-color: #ebebeb; color: black; border-radius: 5px; } section .stories { padding: 20px; padding-top: 0; } section .stories .story--profiles { /* display: flex; justify-content: space-around; align-items: center; */ white-space: nowrap; height: auto; width: 100%; overflow-x: scroll; overflow-y: hidden; } section .stories .story--profiles .story--profile--picture { display: inline-block; width: 75px; height: 75px; margin: auto 5px; } section .feed { padding: 20px; padding-top: 0; } section .feed h3 { display: block; } section .feed .feed-content { column-count: 4; column-gap: 10px; } section .feed .feed-content .feed-post { width: 100%; height: auto; margin-bottom: 8px; } section .feed .feed-content .feed-post .feed-image img { width: 100%; height: 100%; } .feed-information { display: flex; justify-content: space-between; align-items: center; padding: 0.7em 0.4em; border: 1px solid #d3d3d3; border-top: none; margin-top: 0; } .feed-information .user { display: flex; justify-content: space-between; align-items: center; font-size: 0.9em; font-weight: bold; } .feed-information .user .image-wrapper { width: 30px; height: 30px; margin-right: 10px; background-image: radial-gradient( circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90% ); box-sizing: border-box; padding: 0.2em; background-repeat: no-repeat; clip-path: circle(50% at 50% 50%); display: flex; justify-content: center; align-items: center; } .feed-information .user .image-wrapper img { width: 100%; height: 100%; border-radius: 100%; object-fit: cover; border: 2px solid white; } .feed-information .posts-stats { display: flex; justify-content: space-around; align-items: center; flex-direction: row; } .feed-information .post-stats .likes, .feed-information .post-stats .comments { display: inline-block; } .feed-information .post-stats .likes svg, .feed-information .post-stats .comments svg { width: 18px; height: 18px; } @media (max-width: 1200px) { section .feed .feed-content { column-count: 3; column-gap: 20px; } } @media (max-width: 800px) { section .feed .feed-content { column-count: 2; column-gap: 20px; } .tab-item .tab-text { display: none; } } @media (max-width: 600px) { section .feed .feed-content { column-count: 1; } } |
2. Create 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 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 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 |
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <title>Instagram</title> <link href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet" integrity="sha384-wvfXpqpZZVQGK6TAh5PVlGOfQNHSoD2xbE+QkPxCAFlNEevoEH3Sl0sibVcOQVnN" crossorigin="anonymous" /> <link rel="stylesheet" href="style.css" /> </head> <body> <main> <aside> <div class="logo"> <img src="https://www.instagram.com/static/images/web/mobile_nav_type_logo-2x.png/1b47f9d0e595.png" /> </div> <div class="profile"> <div class="profile--picture"> <div class="profile--picture-image-wrapper"> <img src="https://images.unsplash.com/photo-1503884917526-827f85aa33b3?ixlib=rb-1.2.1&auto=format&fit=crop&w=1650&q=80" alt="sailormoon" /> </div> </div> <div class="profile--name"> <h3>Usagi Tsukino</h3> </div> <div class="profile--username"> <p>sailormoon</p> </div> <div class="profile--info"> <div class="info-item profile--posts"> <p class="count">9</p> <p class="title">Posts</p> </div> <div class="info-item profile--followers"> <p class="count">1.4m</p> <p class="title">Followers</p> </div> <div class="info-item profile--following"> <p class="count">17</p> <p class="title">Following</p> </div> </div> </div> <div class="tabs"> <div class="tab-item"> <span class="tab-icon"> <svg aria-hidden="true" focusable="false" data-prefix="fas" data-icon="border-all" class="svg-inline--fa fa-border-all fa-w-14" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"> <defs> <linearGradient id="icon-gradient" x1="0%" y1="0%" x2="50%" y2="100%"> <stop offset="0%" style="stop-color: #e2336b;" /> <stop offset="100%" style="stop-color: #fcac46;" /> </linearGradient> </defs> <path fill="url(#icon-gradient)" d="M416 32H32A32 32 0 0 0 0 64v384a32 32 0 0 0 32 32h384a32 32 0 0 0 32-32V64a32 32 0 0 0-32-32zm-32 64v128H256V96zm-192 0v128H64V96zM64 416V288h128v128zm192 0V288h128v128z"></path> </svg> </span> <span class="tab-text">Feed</span> </div> <div class="tab-item"> <div class="tab-icon"> <svg aria-hidden="true" focusable="false" data-prefix="fas" data-icon="search" class="svg-inline--fa fa-search fa-w-16" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"> <defs> <linearGradient id="icon-gradient" x1="0%" y1="0%" x2="50%" y2="100%"> <stop offset="0%" style="stop-color: #e2336b;" /> <stop offset="100%" style="stop-color: #fcac46;" /> </linearGradient> </defs> <path fill="url(#icon-gradient)" d="M505 442.7L405.3 343c-4.5-4.5-10.6-7-17-7H372c27.6-35.3 44-79.7 44-128C416 93.1 322.9 0 208 0S0 93.1 0 208s93.1 208 208 208c48.3 0 92.7-16.4 128-44v16.3c0 6.4 2.5 12.5 7 17l99.7 99.7c9.4 9.4 24.6 9.4 33.9 0l28.3-28.3c9.4-9.4 9.4-24.6.1-34zM208 336c-70.7 0-128-57.2-128-128 0-70.7 57.2-128 128-128 70.7 0 128 57.2 128 128 0 70.7-57.2 128-128 128z"></path> </svg> </div> <span class="tab-text">Explore</span> </div> <div class="tab-item"> <div class="tab-icon"> <svg aria-hidden="true" focusable="false" data-prefix="fas" data-icon="tv" class="svg-inline--fa fa-tv fa-w-20" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"> <defs> <linearGradient id="icon-gradient" x1="0%" y1="0%" x2="50%" y2="100%"> <stop offset="0%" style="stop-color: #e2336b;" /> <stop offset="100%" style="stop-color: #fcac46;" /> </linearGradient> </defs> <path fill="url(#icon-gradient)" d="M592 0H48A48 48 0 0 0 0 48v320a48 48 0 0 0 48 48h240v32H112a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h416a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16H352v-32h240a48 48 0 0 0 48-48V48a48 48 0 0 0-48-48zm-16 352H64V64h512z"></path> </svg> </div> <span class="tab-text">IGTV</span> </div> <div class="tab-item"> <div class="tab-icon"> <svg aria-label="Activity Feed" class="_8-yf5" fill="#262626" height="22" viewBox="0 0 48 48" width="22"> <defs> <linearGradient id="icon-gradient" x1="0%" y1="0%" x2="50%" y2="100%"> <stop offset="0%" style="stop-color: #e2336b;" /> <stop offset="100%" style="stop-color: #fcac46;" /> </linearGradient> </defs> <path fill="url(#icon-gradient)" clip-rule="evenodd" d="M34.3 3.5C27.2 3.5 24 8.8 24 8.8s-3.2-5.3-10.3-5.3C6.4 3.5.5 9.9.5 17.8s6.1 12.4 12.2 17.8c9.2 8.2 9.8 8.9 11.3 8.9s2.1-.7 11.3-8.9c6.2-5.5 12.2-10 12.2-17.8 0-7.9-5.9-14.3-13.2-14.3zm-1 29.8c-5.4 4.8-8.3 7.5-9.3 8.1-1-.7-4.6-3.9-9.3-8.1-5.5-4.9-11.2-9-11.2-15.6 0-6.2 4.6-11.3 10.2-11.3 4.1 0 6.3 2 7.9 4.2 3.6 5.1 1.2 5.1 4.8 0 1.6-2.2 3.8-4.2 7.9-4.2 5.6 0 10.2 5.1 10.2 11.3 0 6.7-5.7 10.8-11.2 15.6z" fill-rule="evenodd"></path> </svg> </div> <span class="tab-text">Notifications</span> </div> <div class="tab-item"> <div class="tab-icon"> <svg aria-label="Direct" class="_8-yf5" fill="#262626" height="22" viewBox="0 0 48 48" width="22"> <defs> <linearGradient id="icon-gradient" x1="0%" y1="0%" x2="50%" y2="100%"> <stop offset="0%" style="stop-color: #e2336b;" /> <stop offset="100%" style="stop-color: #fcac46;" /> </linearGradient> </defs> <path fill="url(#icon-gradient)" d="M46.5 3.5h-45C.6 3.5.2 4.6.8 5.2l16 15.8 5.5 22.8c.2.9 1.4 1 1.8.3L47.4 5c.4-.7-.1-1.5-.9-1.5zm-40.1 3h33.5L19.1 18c-.4.2-.9.1-1.2-.2L6.4 6.5zm17.7 31.8l-4-16.6c-.1-.4.1-.9.5-1.1L41.5 9 24.1 38.3z"></path> <path d="M14.7 48.4l2.9-.7"></path> </svg> </div> <span class="tab-text">Messages</span> </div> <div class="tab-item"> <div class="tab-icon"> <svg aria-hidden="true" focusable="false" data-prefix="fas" data-icon="chart-bar" class="svg-inline--fa fa-chart-bar fa-w-16" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"> <defs> <linearGradient id="icon-gradient" x1="0%" y1="0%" x2="50%" y2="100%"> <stop offset="0%" style="stop-color: #e2336b;" /> <stop offset="100%" style="stop-color: #fcac46;" /> </linearGradient> </defs> <path fill="url(#icon-gradient)" d="M332.8 320h38.4c6.4 0 12.8-6.4 12.8-12.8V172.8c0-6.4-6.4-12.8-12.8-12.8h-38.4c-6.4 0-12.8 6.4-12.8 12.8v134.4c0 6.4 6.4 12.8 12.8 12.8zm96 0h38.4c6.4 0 12.8-6.4 12.8-12.8V76.8c0-6.4-6.4-12.8-12.8-12.8h-38.4c-6.4 0-12.8 6.4-12.8 12.8v230.4c0 6.4 6.4 12.8 12.8 12.8zm-288 0h38.4c6.4 0 12.8-6.4 12.8-12.8v-70.4c0-6.4-6.4-12.8-12.8-12.8h-38.4c-6.4 0-12.8 6.4-12.8 12.8v70.4c0 6.4 6.4 12.8 12.8 12.8zm96 0h38.4c6.4 0 12.8-6.4 12.8-12.8V108.8c0-6.4-6.4-12.8-12.8-12.8h-38.4c-6.4 0-12.8 6.4-12.8 12.8v198.4c0 6.4 6.4 12.8 12.8 12.8zM496 384H64V80c0-8.84-7.16-16-16-16H16C7.16 64 0 71.16 0 80v336c0 17.67 14.33 32 32 32h464c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16z"></path> </svg> </div> <span class="tab-text">Stats</span> </div> <div class="tab-item"> <div class="tab-icon"> <svg aria-hidden="true" focusable="false" data-prefix="fas" data-icon="cog" class="svg-inline--fa fa-cog fa-w-16" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"> <defs> <linearGradient id="icon-gradient" x1="0%" y1="0%" x2="50%" y2="100%"> <stop offset="0%" style="stop-color: #e2336b;" /> <stop offset="100%" style="stop-color: #fcac46;" /> </linearGradient> </defs> <path fill="url(#icon-gradient)" d="M487.4 315.7l-42.6-24.6c4.3-23.2 4.3-47 0-70.2l42.6-24.6c4.9-2.8 7.1-8.6 5.5-14-11.1-35.6-30-67.8-54.7-94.6-3.8-4.1-10-5.1-14.8-2.3L380.8 110c-17.9-15.4-38.5-27.3-60.8-35.1V25.8c0-5.6-3.9-10.5-9.4-11.7-36.7-8.2-74.3-7.8-109.2 0-5.5 1.2-9.4 6.1-9.4 11.7V75c-22.2 7.9-42.8 19.8-60.8 35.1L88.7 85.5c-4.9-2.8-11-1.9-14.8 2.3-24.7 26.7-43.6 58.9-54.7 94.6-1.7 5.4.6 11.2 5.5 14L67.3 221c-4.3 23.2-4.3 47 0 70.2l-42.6 24.6c-4.9 2.8-7.1 8.6-5.5 14 11.1 35.6 30 67.8 54.7 94.6 3.8 4.1 10 5.1 14.8 2.3l42.6-24.6c17.9 15.4 38.5 27.3 60.8 35.1v49.2c0 5.6 3.9 10.5 9.4 11.7 36.7 8.2 74.3 7.8 109.2 0 5.5-1.2 9.4-6.1 9.4-11.7v-49.2c22.2-7.9 42.8-19.8 60.8-35.1l42.6 24.6c4.9 2.8 11 1.9 14.8-2.3 24.7-26.7 43.6-58.9 54.7-94.6 1.5-5.5-.7-11.3-5.6-14.1zM256 336c-44.1 0-80-35.9-80-80s35.9-80 80-80 80 35.9 80 80-35.9 80-80 80z"></path> </svg> </div> <span class="tab-text">Settings</span> </div> <div class="tab-item"> <div class="tab-icon"> <svg aria-hidden="true" focusable="false" data-prefix="fas" data-icon="sign-out-alt" class="svg-inline--fa fa-sign-out-alt fa-w-16" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"> <defs> <linearGradient id="icon-gradient" x1="0%" y1="0%" x2="50%" y2="100%"> <stop offset="0%" style="stop-color: #e2336b;" /> <stop offset="100%" style="stop-color: #fcac46;" /> </linearGradient> </defs> <path fill="url(#icon-gradient)" d="M497 273L329 441c-15 15-41 4.5-41-17v-96H152c-13.3 0-24-10.7-24-24v-96c0-13.3 10.7-24 24-24h136V88c0-21.4 25.9-32 41-17l168 168c9.3 9.4 9.3 24.6 0 34zM192 436v-40c0-6.6-5.4-12-12-12H96c-17.7 0-32-14.3-32-32V160c0-17.7 14.3-32 32-32h84c6.6 0 12-5.4 12-12V76c0-6.6-5.4-12-12-12H96c-53 0-96 43-96 96v192c0 53 43 96 96 96h84c6.6 0 12-5.4 12-12z"></path> </svg> </div> <span class="tab-text">Log Out</span> </div> </div> </aside> <section> <div class="topnav"> <div class="search-container"> <div><i class="fa fa-search"></i></div> <input type="text" placeholder="Search..." /> </div> <div class="nav-actions"> <div class="add-photo">Add Photo</div> <div class="messages"> <svg aria-label="Direct" class="_8-yf5" fill="#262626" height="22" viewBox="0 0 48 48" width="22"> <path d="M46.5 3.5h-45C.6 3.5.2 4.6.8 5.2l16 15.8 5.5 22.8c.2.9 1.4 1 1.8.3L47.4 5c.4-.7-.1-1.5-.9-1.5zm-40.1 3h33.5L19.1 18c-.4.2-.9.1-1.2-.2L6.4 6.5zm17.7 31.8l-4-16.6c-.1-.4.1-.9.5-1.1L41.5 9 24.1 38.3z"></path> <path d="M14.7 48.4l2.9-.7"></path> </svg> </div> <div class="notifications"> <svg aria-label="Activity Feed" class="_8-yf5" fill="#262626" height="22" viewBox="0 0 48 48" width="22"> <path clip-rule="evenodd" d="M34.3 3.5C27.2 3.5 24 8.8 24 8.8s-3.2-5.3-10.3-5.3C6.4 3.5.5 9.9.5 17.8s6.1 12.4 12.2 17.8c9.2 8.2 9.8 8.9 11.3 8.9s2.1-.7 11.3-8.9c6.2-5.5 12.2-10 12.2-17.8 0-7.9-5.9-14.3-13.2-14.3zm-1 29.8c-5.4 4.8-8.3 7.5-9.3 8.1-1-.7-4.6-3.9-9.3-8.1-5.5-4.9-11.2-9-11.2-15.6 0-6.2 4.6-11.3 10.2-11.3 4.1 0 6.3 2 7.9 4.2 3.6 5.1 1.2 5.1 4.8 0 1.6-2.2 3.8-4.2 7.9-4.2 5.6 0 10.2 5.1 10.2 11.3 0 6.7-5.7 10.8-11.2 15.6z" fill-rule="evenodd"></path> </svg> </div> </div> </div> <div class="stories"> <h3>Stories</h3> <div class="story--profiles"> <div class="story-profile-info"> <div class="story--profile--picture"> <div class="profile--picture-image-wrapper"> <img src="https://images.unsplash.com/photo-1525563092259-168dfa71ab3c?ixlib=rb-1.2.1&auto=format&fit=crop&w=1649&q=80" alt="Venus" /> </div> </div> <div class="story-username"> <small>ashlee31</small> </div> </div> <div class="story-profile-info"> <div class="story--profile--picture"> <div class="profile--picture-image-wrapper"> <img src="https://images.unsplash.com/photo-1532994388016-6da14f9f5fe0?ixlib=rb-1.2.1&auto=format&fit=crop&w=900&q=60" alt="Mars" /> </div> </div> <div class="story-username"> <small>may</small> </div> </div> <div class="story-profile-info"> <div class="story--profile--picture"> <div class="profile--picture-image-wrapper"> <img src="https://images.unsplash.com/photo-1521037621765-40fb72a65ba1?ixlib=rb-1.2.1&auto=format&fit=crop&w=900&q=60" alt="Jupiter" /> </div> </div> <div class="story-username"> <small>_sarah</small> </div> </div> <div class="story-profile-info"> <div class="story--profile--picture"> <div class="profile--picture-image-wrapper"> <img src="https://images.unsplash.com/photo-1545529787-5ba04530c1fd?ixlib=rb-1.2.1&auto=format&fit=crop&w=900&q=60" alt="Luna" /> </div> </div> <div class="story-username"> <small>lulu</small> </div> </div> <div class="story-profile-info"> <div class="story--profile--picture"> <div class="profile--picture-image-wrapper"> <img src="https://images.unsplash.com/photo-1527262813365-cc2694361bf6?ixlib=rb-1.2.1&auto=format&fit=crop&w=900&q=60" alt="Mercury" /> </div> </div> <div class="story-username"> <small>rose</small> </div> </div> <div class="story-profile-info"> <div class="story--profile--picture"> <div class="profile--picture-image-wrapper"> <img src="https://images.unsplash.com/photo-1585890483046-9461ebc1dace?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=1650&q=80" alt="Artemis" /> </div> </div> <div class="story-username"> <small>imogen.41</small> </div> </div> <div class="story-profile-info"> <div class="story--profile--picture"> <div class="profile--picture-image-wrapper"> <img src="https://images.unsplash.com/photo-1585766467562-f2c18168a71a?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=1650&q=80" alt="Diana" /> </div> </div> <div class="story-username"> <small>claree_</small> </div> </div> <div class="story-profile-info"> <div class="story--profile--picture"> <div class="profile--picture-image-wrapper"> <img src="https://images.unsplash.com/photo-1569455390895-348ea84f0925?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=900&q=60" alt="Usagi" /> </div> </div> <div class="story-username"> <small>bandari3</small> </div> </div> <div class="story-profile-info"> <div class="story--profile--picture"> <div class="profile--picture-image-wrapper"> <img src="https://images.unsplash.com/photo-1621570169694-4867389dcc66?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=1050&q=80" alt="Rei" /> </div> </div> <div class="story-username"> <small>songbirdjm</small> </div> </div> <div class="story-profile-info"> <div class="story--profile--picture"> <div class="profile--picture-image-wrapper"> <img src="https://images.unsplash.com/photo-1586999937627-361bef06fd29?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=900&q=60" alt="Minako" /> </div> </div> <div class="story-username"> <small>sprfinebros</small> </div> </div> <div class="story-profile-info"> <div class="story--profile--picture"> <div class="profile--picture-image-wrapper"> <img src="https://images.unsplash.com/photo-1537532194387-b58d36b54095?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=900&q=60" alt="Makoto" /> </div> </div> <div class="story-username"> <small>madame121</small> </div> </div> <div class="story-profile-info"> <div class="story--profile--picture"> <div class="profile--picture-image-wrapper"> <img src="https://images.unsplash.com/photo-1519993796861-26556330a4a9?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=900&q=60" alt="Ami" /> </div> </div> <div class="story-username"> <small>hayley.omg</small> </div> </div> <div class="story-profile-info"> <div class="story--profile--picture"> <div class="profile--picture-image-wrapper"> <img src="https://images.unsplash.com/photo-1472066719480-ecc7314ed065?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=900&q=60" alt="Mamoru" /> </div> </div> <div class="story-username"> <small>gandolfreborn</small> </div> </div> <div class="story-profile-info"> <div class="story--profile--picture"> <div class="profile--picture-image-wrapper"> <img src="https://images.unsplash.com/photo-1586489948622-f284530bc070?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=900&q=60" alt="Ella" /> </div> </div> <div class="story-username"> <small>treegurl</small> </div> </div> <div class="story-profile-info"> <div class="story--profile--picture"> <div class="profile--picture-image-wrapper"> <img src="https://images.unsplash.com/photo-1586702443651-f96e473303f1?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=900&q=60" alt="Benni" /> </div> </div> <div class="story-username"> <small>samuelthinks</small> </div> </div> <div class="story-profile-info"> <div class="story--profile--picture"> <div class="profile--picture-image-wrapper"> <img src="https://images.unsplash.com/photo-1586630135441-f125656a34b9?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=900&q=60" alt="Johnathan" /> </div> </div> <div class="story-username"> <small>john.green</small> </div> </div> <div class="story-profile-info"> <div class="story--profile--picture"> <div class="profile--picture-image-wrapper"> <img src="https://images.unsplash.com/photo-1508204841652-6c134d77ce0c?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=900&q=60" alt="Diana" /> </div> </div> <div class="story-username"> <small>camille.katz</small> </div> </div> </div> </div> <div class="feed"> <h3>Feed</h3> <div class="feed-content"> <div class="feed-post"> <div class="feed-image"> <img src="https://images.unsplash.com/photo-1587289032793-1948a0441c3a?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=900&q=60" alt="girl" /> </div> <div class="feed-information"> <div class="user"> <div class="image-wrapper"> <img src="https://images.unsplash.com/photo-1525563092259-168dfa71ab3c?ixlib=rb-1.2.1&auto=format&fit=crop&w=1649&q=80" alt="Venus" /> </div> ashlee31A </div> <div class="post-stats"> <div class="likes"> <svg aria-label="Activity Feed" class="_8-yf5" fill="#262626" height="22" viewBox="0 0 48 48" width="15"> <path clip-rule="evenodd" d="M34.3 3.5C27.2 3.5 24 8.8 24 8.8s-3.2-5.3-10.3-5.3C6.4 3.5.5 9.9.5 17.8s6.1 12.4 12.2 17.8c9.2 8.2 9.8 8.9 11.3 8.9s2.1-.7 11.3-8.9c6.2-5.5 12.2-10 12.2-17.8 0-7.9-5.9-14.3-13.2-14.3zm-1 29.8c-5.4 4.8-8.3 7.5-9.3 8.1-1-.7-4.6-3.9-9.3-8.1-5.5-4.9-11.2-9-11.2-15.6 0-6.2 4.6-11.3 10.2-11.3 4.1 0 6.3 2 7.9 4.2 3.6 5.1 1.2 5.1 4.8 0 1.6-2.2 3.8-4.2 7.9-4.2 5.6 0 10.2 5.1 10.2 11.3 0 6.7-5.7 10.8-11.2 15.6z" fill-rule="evenodd"></path> </svg> <small>20</small> </div> <div class="comments"> <svg aria-label="Comment" class="_8-yf5" fill="#262626" height="15" viewBox="0 0 48 48" width="15"> <path clip-rule="evenodd" d="M47.5 46.1l-2.8-11c1.8-3.3 2.8-7.1 2.8-11.1C47.5 11 37 .5 24 .5S.5 11 .5 24 11 47.5 24 47.5c4 0 7.8-1 11.1-2.8l11 2.8c.8.2 1.6-.6 1.4-1.4zm-3-22.1c0 4-1 7-2.6 10-.2.4-.3.9-.2 1.4l2.1 8.4-8.3-2.1c-.5-.1-1-.1-1.4.2-1.8 1-5.2 2.6-10 2.6-11.4 0-20.6-9.2-20.6-20.5S12.7 3.5 24 3.5 44.5 12.7 44.5 24z" fill-rule="evenodd"></path> </svg> <small>10</small> </div> </div> </div> </div> <div class="feed-post"> <div class="feed-image"> <img src="https://images.unsplash.com/photo-1587279063133-e65e2d8b849f?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=900&q=60" alt="girl" /> </div> <div class="feed-information"> <div class="user"> <div class="image-wrapper"> <img src="https://images.unsplash.com/photo-1532994388016-6da14f9f5fe0?ixlib=rb-1.2.1&auto=format&fit=crop&w=900&q=60" alt="Venus" /> </div> may </div> <div class="post-stats"> <div class="likes"> <svg aria-label="Activity Feed" class="_8-yf5" fill="#262626" height="22" viewBox="0 0 48 48" width="15"> <path clip-rule="evenodd" d="M34.3 3.5C27.2 3.5 24 8.8 24 8.8s-3.2-5.3-10.3-5.3C6.4 3.5.5 9.9.5 17.8s6.1 12.4 12.2 17.8c9.2 8.2 9.8 8.9 11.3 8.9s2.1-.7 11.3-8.9c6.2-5.5 12.2-10 12.2-17.8 0-7.9-5.9-14.3-13.2-14.3zm-1 29.8c-5.4 4.8-8.3 7.5-9.3 8.1-1-.7-4.6-3.9-9.3-8.1-5.5-4.9-11.2-9-11.2-15.6 0-6.2 4.6-11.3 10.2-11.3 4.1 0 6.3 2 7.9 4.2 3.6 5.1 1.2 5.1 4.8 0 1.6-2.2 3.8-4.2 7.9-4.2 5.6 0 10.2 5.1 10.2 11.3 0 6.7-5.7 10.8-11.2 15.6z" fill-rule="evenodd"></path> </svg> <small>12</small> </div> <div class="comments"> <svg aria-label="Comment" class="_8-yf5" fill="#262626" height="15" viewBox="0 0 48 48" width="15"> <path clip-rule="evenodd" d="M47.5 46.1l-2.8-11c1.8-3.3 2.8-7.1 2.8-11.1C47.5 11 37 .5 24 .5S.5 11 .5 24 11 47.5 24 47.5c4 0 7.8-1 11.1-2.8l11 2.8c.8.2 1.6-.6 1.4-1.4zm-3-22.1c0 4-1 7-2.6 10-.2.4-.3.9-.2 1.4l2.1 8.4-8.3-2.1c-.5-.1-1-.1-1.4.2-1.8 1-5.2 2.6-10 2.6-11.4 0-20.6-9.2-20.6-20.5S12.7 3.5 24 3.5 44.5 12.7 44.5 24z" fill-rule="evenodd"></path> </svg> <small>1</small> </div> </div> </div> </div> <div class="feed-post"> <div class="feed-image"> <img src="https://images.unsplash.com/photo-1587276276638-670b4d6d99bf?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=900&q=60" alt="girl" /> </div> <div class="feed-information"> <div class="user"> <div class="image-wrapper"> <img src="https://images.unsplash.com/photo-1525563092259-168dfa71ab3c?ixlib=rb-1.2.1&auto=format&fit=crop&w=1649&q=80" alt="Venus" /> </div> ashlee31 </div> <div class="post-stats"> <div class="likes"> <svg aria-label="Activity Feed" class="_8-yf5" fill="#262626" height="22" viewBox="0 0 48 48" width="15"> <path clip-rule="evenodd" d="M34.3 3.5C27.2 3.5 24 8.8 24 8.8s-3.2-5.3-10.3-5.3C6.4 3.5.5 9.9.5 17.8s6.1 12.4 12.2 17.8c9.2 8.2 9.8 8.9 11.3 8.9s2.1-.7 11.3-8.9c6.2-5.5 12.2-10 12.2-17.8 0-7.9-5.9-14.3-13.2-14.3zm-1 29.8c-5.4 4.8-8.3 7.5-9.3 8.1-1-.7-4.6-3.9-9.3-8.1-5.5-4.9-11.2-9-11.2-15.6 0-6.2 4.6-11.3 10.2-11.3 4.1 0 6.3 2 7.9 4.2 3.6 5.1 1.2 5.1 4.8 0 1.6-2.2 3.8-4.2 7.9-4.2 5.6 0 10.2 5.1 10.2 11.3 0 6.7-5.7 10.8-11.2 15.6z" fill-rule="evenodd"></path> </svg> <small>20</small> </div> <div class="comments"> <svg aria-label="Comment" class="_8-yf5" fill="#262626" height="15" viewBox="0 0 48 48" width="15"> <path clip-rule="evenodd" d="M47.5 46.1l-2.8-11c1.8-3.3 2.8-7.1 2.8-11.1C47.5 11 37 .5 24 .5S.5 11 .5 24 11 47.5 24 47.5c4 0 7.8-1 11.1-2.8l11 2.8c.8.2 1.6-.6 1.4-1.4zm-3-22.1c0 4-1 7-2.6 10-.2.4-.3.9-.2 1.4l2.1 8.4-8.3-2.1c-.5-.1-1-.1-1.4.2-1.8 1-5.2 2.6-10 2.6-11.4 0-20.6-9.2-20.6-20.5S12.7 3.5 24 3.5 44.5 12.7 44.5 24z" fill-rule="evenodd"></path> </svg> <small>10</small> </div> </div> </div> </div> <div class="feed-post"> <div class="feed-image"> <img src="https://images.unsplash.com/photo-1511401139252-f158d3209c17?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=900&q=60" alt="girl" /> </div> <div class="feed-information"> <div class="user"> <div class="image-wrapper"> <img src="https://images.unsplash.com/photo-1586999937627-361bef06fd29?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=900&q=600" alt="Venus" /> </div> sprfinebros </div> <div class="post-stats"> <div class="likes"> <svg aria-label="Activity Feed" class="_8-yf5" fill="#262626" height="22" viewBox="0 0 48 48" width="15"> <path clip-rule="evenodd" d="M34.3 3.5C27.2 3.5 24 8.8 24 8.8s-3.2-5.3-10.3-5.3C6.4 3.5.5 9.9.5 17.8s6.1 12.4 12.2 17.8c9.2 8.2 9.8 8.9 11.3 8.9s2.1-.7 11.3-8.9c6.2-5.5 12.2-10 12.2-17.8 0-7.9-5.9-14.3-13.2-14.3zm-1 29.8c-5.4 4.8-8.3 7.5-9.3 8.1-1-.7-4.6-3.9-9.3-8.1-5.5-4.9-11.2-9-11.2-15.6 0-6.2 4.6-11.3 10.2-11.3 4.1 0 6.3 2 7.9 4.2 3.6 5.1 1.2 5.1 4.8 0 1.6-2.2 3.8-4.2 7.9-4.2 5.6 0 10.2 5.1 10.2 11.3 0 6.7-5.7 10.8-11.2 15.6z" fill-rule="evenodd"></path> </svg> <small>123</small> </div> <div class="comments"> <svg aria-label="Comment" class="_8-yf5" fill="#262626" height="15" viewBox="0 0 48 48" width="15"> <path clip-rule="evenodd" d="M47.5 46.1l-2.8-11c1.8-3.3 2.8-7.1 2.8-11.1C47.5 11 37 .5 24 .5S.5 11 .5 24 11 47.5 24 47.5c4 0 7.8-1 11.1-2.8l11 2.8c.8.2 1.6-.6 1.4-1.4zm-3-22.1c0 4-1 7-2.6 10-.2.4-.3.9-.2 1.4l2.1 8.4-8.3-2.1c-.5-.1-1-.1-1.4.2-1.8 1-5.2 2.6-10 2.6-11.4 0-20.6-9.2-20.6-20.5S12.7 3.5 24 3.5 44.5 12.7 44.5 24z" fill-rule="evenodd"></path> </svg> <small>8</small> </div> </div> </div> </div> <div class="feed-post"> <div class="feed-image"> <img src="https://images.unsplash.com/photo-1587237600369-00def7a90499?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=900&q=60" alt="girl" /> </div> <div class="feed-information"> <div class="user"> <div class="image-wrapper"> <img src="https://images.unsplash.com/photo-1521037621765-40fb72a65ba1?ixlib=rb-1.2.1&auto=format&fit=crop&w=900&q=60" alt="Venus" /> </div> _sarah </div> <div class="post-stats"> <div class="likes"> <svg aria-label="Activity Feed" class="_8-yf5" fill="#262626" height="22" viewBox="0 0 48 48" width="15"> <path clip-rule="evenodd" d="M34.3 3.5C27.2 3.5 24 8.8 24 8.8s-3.2-5.3-10.3-5.3C6.4 3.5.5 9.9.5 17.8s6.1 12.4 12.2 17.8c9.2 8.2 9.8 8.9 11.3 8.9s2.1-.7 11.3-8.9c6.2-5.5 12.2-10 12.2-17.8 0-7.9-5.9-14.3-13.2-14.3zm-1 29.8c-5.4 4.8-8.3 7.5-9.3 8.1-1-.7-4.6-3.9-9.3-8.1-5.5-4.9-11.2-9-11.2-15.6 0-6.2 4.6-11.3 10.2-11.3 4.1 0 6.3 2 7.9 4.2 3.6 5.1 1.2 5.1 4.8 0 1.6-2.2 3.8-4.2 7.9-4.2 5.6 0 10.2 5.1 10.2 11.3 0 6.7-5.7 10.8-11.2 15.6z" fill-rule="evenodd"></path> </svg> <small>11</small> </div> <div class="comments"> <svg aria-label="Comment" class="_8-yf5" fill="#262626" height="15" viewBox="0 0 48 48" width="15"> <path clip-rule="evenodd" d="M47.5 46.1l-2.8-11c1.8-3.3 2.8-7.1 2.8-11.1C47.5 11 37 .5 24 .5S.5 11 .5 24 11 47.5 24 47.5c4 0 7.8-1 11.1-2.8l11 2.8c.8.2 1.6-.6 1.4-1.4zm-3-22.1c0 4-1 7-2.6 10-.2.4-.3.9-.2 1.4l2.1 8.4-8.3-2.1c-.5-.1-1-.1-1.4.2-1.8 1-5.2 2.6-10 2.6-11.4 0-20.6-9.2-20.6-20.5S12.7 3.5 24 3.5 44.5 12.7 44.5 24z" fill-rule="evenodd"></path> </svg> <small>0</small> </div> </div> </div> </div> <div class="feed-post"> <div class="feed-image"> <img src="https://images.unsplash.com/photo-1587251491364-cc958af3ea0c?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=1650&q=80" alt="girl" /> </div> <div class="feed-information"> <div class="user"> <div class="image-wrapper"> <img src="https://images.unsplash.com/photo-1525563092259-168dfa71ab3c?ixlib=rb-1.2.1&auto=format&fit=crop&w=1649&q=80" alt="Venus" /> </div> ashlee31 </div> <div class="post-stats"> <div class="likes"> <svg aria-label="Activity Feed" class="_8-yf5" fill="#262626" height="22" viewBox="0 0 48 48" width="15"> <path clip-rule="evenodd" d="M34.3 3.5C27.2 3.5 24 8.8 24 8.8s-3.2-5.3-10.3-5.3C6.4 3.5.5 9.9.5 17.8s6.1 12.4 12.2 17.8c9.2 8.2 9.8 8.9 11.3 8.9s2.1-.7 11.3-8.9c6.2-5.5 12.2-10 12.2-17.8 0-7.9-5.9-14.3-13.2-14.3zm-1 29.8c-5.4 4.8-8.3 7.5-9.3 8.1-1-.7-4.6-3.9-9.3-8.1-5.5-4.9-11.2-9-11.2-15.6 0-6.2 4.6-11.3 10.2-11.3 4.1 0 6.3 2 7.9 4.2 3.6 5.1 1.2 5.1 4.8 0 1.6-2.2 3.8-4.2 7.9-4.2 5.6 0 10.2 5.1 10.2 11.3 0 6.7-5.7 10.8-11.2 15.6z" fill-rule="evenodd"></path> </svg> <small>20</small> </div> <div class="comments"> <svg aria-label="Comment" class="_8-yf5" fill="#262626" height="15" viewBox="0 0 48 48" width="15"> <path clip-rule="evenodd" d="M47.5 46.1l-2.8-11c1.8-3.3 2.8-7.1 2.8-11.1C47.5 11 37 .5 24 .5S.5 11 .5 24 11 47.5 24 47.5c4 0 7.8-1 11.1-2.8l11 2.8c.8.2 1.6-.6 1.4-1.4zm-3-22.1c0 4-1 7-2.6 10-.2.4-.3.9-.2 1.4l2.1 8.4-8.3-2.1c-.5-.1-1-.1-1.4.2-1.8 1-5.2 2.6-10 2.6-11.4 0-20.6-9.2-20.6-20.5S12.7 3.5 24 3.5 44.5 12.7 44.5 24z" fill-rule="evenodd"></path> </svg> <small>10</small> </div> </div> </div> </div> <div class="feed-post"> <div class="feed-image"> <img src="https://images.unsplash.com/photo-1549859305-63352a314b60?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=900&q=60" alt="girl" /> </div> <div class="feed-information"> <div class="user"> <div class="image-wrapper"> <img src="https://images.unsplash.com/photo-1525563092259-168dfa71ab3c?ixlib=rb-1.2.1&auto=format&fit=crop&w=1649&q=80" alt="Venus" /> </div> ashlee31 </div> <div class="post-stats"> <div class="likes"> <svg aria-label="Activity Feed" class="_8-yf5" fill="#262626" height="22" viewBox="0 0 48 48" width="15"> <path clip-rule="evenodd" d="M34.3 3.5C27.2 3.5 24 8.8 24 8.8s-3.2-5.3-10.3-5.3C6.4 3.5.5 9.9.5 17.8s6.1 12.4 12.2 17.8c9.2 8.2 9.8 8.9 11.3 8.9s2.1-.7 11.3-8.9c6.2-5.5 12.2-10 12.2-17.8 0-7.9-5.9-14.3-13.2-14.3zm-1 29.8c-5.4 4.8-8.3 7.5-9.3 8.1-1-.7-4.6-3.9-9.3-8.1-5.5-4.9-11.2-9-11.2-15.6 0-6.2 4.6-11.3 10.2-11.3 4.1 0 6.3 2 7.9 4.2 3.6 5.1 1.2 5.1 4.8 0 1.6-2.2 3.8-4.2 7.9-4.2 5.6 0 10.2 5.1 10.2 11.3 0 6.7-5.7 10.8-11.2 15.6z" fill-rule="evenodd"></path> </svg> <small>20</small> </div> <div class="comments"> <svg aria-label="Comment" class="_8-yf5" fill="#262626" height="15" viewBox="0 0 48 48" width="15"> <path clip-rule="evenodd" d="M47.5 46.1l-2.8-11c1.8-3.3 2.8-7.1 2.8-11.1C47.5 11 37 .5 24 .5S.5 11 .5 24 11 47.5 24 47.5c4 0 7.8-1 11.1-2.8l11 2.8c.8.2 1.6-.6 1.4-1.4zm-3-22.1c0 4-1 7-2.6 10-.2.4-.3.9-.2 1.4l2.1 8.4-8.3-2.1c-.5-.1-1-.1-1.4.2-1.8 1-5.2 2.6-10 2.6-11.4 0-20.6-9.2-20.6-20.5S12.7 3.5 24 3.5 44.5 12.7 44.5 24z" fill-rule="evenodd"></path> </svg> <small>10</small> </div> </div> </div> </div> <div class="feed-post"> <div class="feed-image"> <img src="https://images.unsplash.com/photo-1587235442314-afb44886c549?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=900&q=60" alt="woman" /> </div> <div class="feed-information"> <div class="user"> <div class="image-wrapper"> <img src="https://images.unsplash.com/photo-1525563092259-168dfa71ab3c?ixlib=rb-1.2.1&auto=format&fit=crop&w=1649&q=80" alt="Venus" /> </div> ashlee31 </div> <div class="post-stats"> <div class="likes"> <svg aria-label="Activity Feed" class="_8-yf5" fill="#262626" height="22" viewBox="0 0 48 48" width="15"> <path clip-rule="evenodd" d="M34.3 3.5C27.2 3.5 24 8.8 24 8.8s-3.2-5.3-10.3-5.3C6.4 3.5.5 9.9.5 17.8s6.1 12.4 12.2 17.8c9.2 8.2 9.8 8.9 11.3 8.9s2.1-.7 11.3-8.9c6.2-5.5 12.2-10 12.2-17.8 0-7.9-5.9-14.3-13.2-14.3zm-1 29.8c-5.4 4.8-8.3 7.5-9.3 8.1-1-.7-4.6-3.9-9.3-8.1-5.5-4.9-11.2-9-11.2-15.6 0-6.2 4.6-11.3 10.2-11.3 4.1 0 6.3 2 7.9 4.2 3.6 5.1 1.2 5.1 4.8 0 1.6-2.2 3.8-4.2 7.9-4.2 5.6 0 10.2 5.1 10.2 11.3 0 6.7-5.7 10.8-11.2 15.6z" fill-rule="evenodd"></path> </svg> <small>20</small> </div> <div class="comments"> <svg aria-label="Comment" class="_8-yf5" fill="#262626" height="15" viewBox="0 0 48 48" width="15"> <path clip-rule="evenodd" d="M47.5 46.1l-2.8-11c1.8-3.3 2.8-7.1 2.8-11.1C47.5 11 37 .5 24 .5S.5 11 .5 24 11 47.5 24 47.5c4 0 7.8-1 11.1-2.8l11 2.8c.8.2 1.6-.6 1.4-1.4zm-3-22.1c0 4-1 7-2.6 10-.2.4-.3.9-.2 1.4l2.1 8.4-8.3-2.1c-.5-.1-1-.1-1.4.2-1.8 1-5.2 2.6-10 2.6-11.4 0-20.6-9.2-20.6-20.5S12.7 3.5 24 3.5 44.5 12.7 44.5 24z" fill-rule="evenodd"></path> </svg> <small>10</small> </div> </div> </div> </div> <div class="feed-post"> <div class="feed-image"> <img src="https://images.unsplash.com/photo-1579538506280-84e461ad0077?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=900&q=60" alt="family" /> </div> <div class="feed-information"> <div class="user"> <div class="image-wrapper"> <img src="https://images.unsplash.com/photo-1525563092259-168dfa71ab3c?ixlib=rb-1.2.1&auto=format&fit=crop&w=1649&q=80" alt="Venus" /> </div> ashlee31 </div> <div class="post-stats"> <div class="likes"> <svg aria-label="Activity Feed" class="_8-yf5" fill="#262626" height="22" viewBox="0 0 48 48" width="15"> <path clip-rule="evenodd" d="M34.3 3.5C27.2 3.5 24 8.8 24 8.8s-3.2-5.3-10.3-5.3C6.4 3.5.5 9.9.5 17.8s6.1 12.4 12.2 17.8c9.2 8.2 9.8 8.9 11.3 8.9s2.1-.7 11.3-8.9c6.2-5.5 12.2-10 12.2-17.8 0-7.9-5.9-14.3-13.2-14.3zm-1 29.8c-5.4 4.8-8.3 7.5-9.3 8.1-1-.7-4.6-3.9-9.3-8.1-5.5-4.9-11.2-9-11.2-15.6 0-6.2 4.6-11.3 10.2-11.3 4.1 0 6.3 2 7.9 4.2 3.6 5.1 1.2 5.1 4.8 0 1.6-2.2 3.8-4.2 7.9-4.2 5.6 0 10.2 5.1 10.2 11.3 0 6.7-5.7 10.8-11.2 15.6z" fill-rule="evenodd"></path> </svg> <small>20</small> </div> <div class="comments"> <svg aria-label="Comment" class="_8-yf5" fill="#262626" height="15" viewBox="0 0 48 48" width="15"> <path clip-rule="evenodd" d="M47.5 46.1l-2.8-11c1.8-3.3 2.8-7.1 2.8-11.1C47.5 11 37 .5 24 .5S.5 11 .5 24 11 47.5 24 47.5c4 0 7.8-1 11.1-2.8l11 2.8c.8.2 1.6-.6 1.4-1.4zm-3-22.1c0 4-1 7-2.6 10-.2.4-.3.9-.2 1.4l2.1 8.4-8.3-2.1c-.5-.1-1-.1-1.4.2-1.8 1-5.2 2.6-10 2.6-11.4 0-20.6-9.2-20.6-20.5S12.7 3.5 24 3.5 44.5 12.7 44.5 24z" fill-rule="evenodd"></path> </svg> <small>10</small> </div> </div> </div> </div> <div class="feed-post"> <div class="feed-image"> <img src="https://images.unsplash.com/photo-1514907728441-b33bec65e315?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=900&q=60" alt="wise man" /> </div> <div class="feed-information"> <div class="user"> <div class="image-wrapper"> <img src="https://images.unsplash.com/photo-1525563092259-168dfa71ab3c?ixlib=rb-1.2.1&auto=format&fit=crop&w=1649&q=80" alt="Venus" /> </div> ashlee31 </div> <div class="post-stats"> <div class="likes"> <svg aria-label="Activity Feed" class="_8-yf5" fill="#262626" height="22" viewBox="0 0 48 48" width="15"> <path clip-rule="evenodd" d="M34.3 3.5C27.2 3.5 24 8.8 24 8.8s-3.2-5.3-10.3-5.3C6.4 3.5.5 9.9.5 17.8s6.1 12.4 12.2 17.8c9.2 8.2 9.8 8.9 11.3 8.9s2.1-.7 11.3-8.9c6.2-5.5 12.2-10 12.2-17.8 0-7.9-5.9-14.3-13.2-14.3zm-1 29.8c-5.4 4.8-8.3 7.5-9.3 8.1-1-.7-4.6-3.9-9.3-8.1-5.5-4.9-11.2-9-11.2-15.6 0-6.2 4.6-11.3 10.2-11.3 4.1 0 6.3 2 7.9 4.2 3.6 5.1 1.2 5.1 4.8 0 1.6-2.2 3.8-4.2 7.9-4.2 5.6 0 10.2 5.1 10.2 11.3 0 6.7-5.7 10.8-11.2 15.6z" fill-rule="evenodd"></path> </svg> <small>20</small> </div> <div class="comments"> <svg aria-label="Comment" class="_8-yf5" fill="#262626" height="15" viewBox="0 0 48 48" width="15"> <path clip-rule="evenodd" d="M47.5 46.1l-2.8-11c1.8-3.3 2.8-7.1 2.8-11.1C47.5 11 37 .5 24 .5S.5 11 .5 24 11 47.5 24 47.5c4 0 7.8-1 11.1-2.8l11 2.8c.8.2 1.6-.6 1.4-1.4zm-3-22.1c0 4-1 7-2.6 10-.2.4-.3.9-.2 1.4l2.1 8.4-8.3-2.1c-.5-.1-1-.1-1.4.2-1.8 1-5.2 2.6-10 2.6-11.4 0-20.6-9.2-20.6-20.5S12.7 3.5 24 3.5 44.5 12.7 44.5 24z" fill-rule="evenodd"></path> </svg> <small>10</small> </div> </div> </div> </div> <!-- <div class="feed-post"> <div class="feed-image"> <img src="https://images.unsplash.com/photo-1587285100968-d0233ed536da?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=900&q=60" alt="girl" /> </div> <div class="feed-information"> <div class="user"> <div class="image-wrapper"> <img src="https://images.unsplash.com/photo-1525563092259-168dfa71ab3c?ixlib=rb-1.2.1&auto=format&fit=crop&w=1649&q=80" alt="Venus" /> </div> ashlee31 </div> <div class="post-stats"> <div class="likes"> <svg aria-label="Activity Feed" class="_8-yf5" fill="#262626" height="22" viewBox="0 0 48 48" width="15" > <path clip-rule="evenodd" d="M34.3 3.5C27.2 3.5 24 8.8 24 8.8s-3.2-5.3-10.3-5.3C6.4 3.5.5 9.9.5 17.8s6.1 12.4 12.2 17.8c9.2 8.2 9.8 8.9 11.3 8.9s2.1-.7 11.3-8.9c6.2-5.5 12.2-10 12.2-17.8 0-7.9-5.9-14.3-13.2-14.3zm-1 29.8c-5.4 4.8-8.3 7.5-9.3 8.1-1-.7-4.6-3.9-9.3-8.1-5.5-4.9-11.2-9-11.2-15.6 0-6.2 4.6-11.3 10.2-11.3 4.1 0 6.3 2 7.9 4.2 3.6 5.1 1.2 5.1 4.8 0 1.6-2.2 3.8-4.2 7.9-4.2 5.6 0 10.2 5.1 10.2 11.3 0 6.7-5.7 10.8-11.2 15.6z" fill-rule="evenodd" ></path> </svg> <small>20</small> </div> <div class="comments"> <svg aria-label="Comment" class="_8-yf5" fill="#262626" height="15" viewBox="0 0 48 48" width="15" > <path clip-rule="evenodd" d="M47.5 46.1l-2.8-11c1.8-3.3 2.8-7.1 2.8-11.1C47.5 11 37 .5 24 .5S.5 11 .5 24 11 47.5 24 47.5c4 0 7.8-1 11.1-2.8l11 2.8c.8.2 1.6-.6 1.4-1.4zm-3-22.1c0 4-1 7-2.6 10-.2.4-.3.9-.2 1.4l2.1 8.4-8.3-2.1c-.5-.1-1-.1-1.4.2-1.8 1-5.2 2.6-10 2.6-11.4 0-20.6-9.2-20.6-20.5S12.7 3.5 24 3.5 44.5 12.7 44.5 24z" fill-rule="evenodd" ></path> </svg> <small>10</small> </div> </div> </div> </div> --> </div> </div> </section> </main> </body> </html> |
Recreating Instagram’s UI using HTML templates serves as an excellent learning opportunity for aspiring web developers. Understanding HTML structure, CSS styling, layout positioning, and responsive design principles are essential takeaways from this exercise. While creating an exact replica may be challenging, the process teaches valuable skills applicable to various web development projects, fostering creativity and proficiency in UI design and development.