-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
13 changed files
with
136 additions
and
0 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,95 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
<title>Instagram</title> | ||
<!-- tailwind --> | ||
<script src="https://cdn.tailwindcss.com/3.4.1"></script> | ||
</head> | ||
<body> | ||
<header class="flex items-center justify-between p-6"> | ||
<div> | ||
<img src="./assets/images/logo.svg" alt="" /> | ||
</div> | ||
<div class="flex gap-5"> | ||
<button> | ||
<img src="./assets/icons/add.svg" alt="" /> | ||
</button> | ||
<button> | ||
<img src="./assets/icons/messages.svg" alt="" /> | ||
<span | ||
class="block absolute top-[32px] right-[20px] text-[7px] bg-red-600 text-white w-[15px] h-[15px] p-[2px] rounded-full" | ||
>14 | ||
</span> | ||
</button> | ||
</div> | ||
</header> | ||
<main class="p-6"> | ||
<div class="flex gap-10 items-center overflow-x-auto"> | ||
<div class=""> | ||
<div class="relative w-[43px]"> | ||
<img src="./assets/images/story1.png" alt="" width="43" /> | ||
<img | ||
width="19" | ||
src="./assets/icons/plus.svg" | ||
alt="" | ||
class="absolute right-[-5px] bottom-[-2px]" | ||
/> | ||
</div> | ||
<span class="text-[8px] block mt-4 text-center">Your Story</span> | ||
</div> | ||
<div> | ||
<div class="w-[57px] h-[57px]"> | ||
<img | ||
class="rounded-full border border-[#F20D6D] w-full h-full" | ||
src="./assets/images/shawnmendes.png" | ||
alt="" | ||
/> | ||
</div> | ||
<span class="text-[8px] block mt-2 text-center">shawnmendes</span> | ||
</div> | ||
<div> | ||
<div class="w-[57px] h-[57px]"> | ||
<img | ||
class="rounded-full border border-[#F20D6D] w-full h-full" | ||
src="./assets/images/tom.png" | ||
alt="" | ||
/> | ||
</div> | ||
<span class="text-[8px] block mt-2 text-center">tomcruise</span> | ||
</div> | ||
<div> | ||
<div class="w-[57px] h-[57px]"> | ||
<img | ||
class="rounded-full border border-[#F20D6D] w-full h-full" | ||
src="./assets/images/jim.png" | ||
alt="" | ||
/> | ||
</div> | ||
<span class="text-[8px] block mt-2 text-center">jimcarrey</span> | ||
</div> | ||
<div> | ||
<div class="w-[57px] h-[57px]"> | ||
<img | ||
class="rounded-full border border-[#F20D6D] w-full h-full" | ||
src="./assets/images/katy.png" | ||
alt="" | ||
/> | ||
</div> | ||
<span class="text-[8px] block mt-2 text-center">katyperry</span> | ||
</div> | ||
<div> | ||
<div class="w-[57px] h-[57px]"> | ||
<img | ||
class="rounded-full border border-[#F20D6D]" | ||
src="./assets/images/vin.png" | ||
alt="" | ||
/> | ||
</div> | ||
<span class="text-[8px] block mt-2 text-center">Vindiesel</span> | ||
</div> | ||
</div> | ||
</main> | ||
</body> | ||
</html> |