-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Notification Page , index responsive and footer
- Loading branch information
1 parent
2b81cc0
commit ce3b037
Showing
4 changed files
with
54 additions
and
16 deletions.
There are no files selected for viewing
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
Binary file not shown.
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
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,49 @@ | ||
<!DOCTYPE html> | ||
<html lang="ar" dir="rtl"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<meta name="description" content="2G9"> | ||
<link href="./output.css" rel="stylesheet"> | ||
<title>Favorite PAge</title> | ||
<link rel="icon" type="image/png" href="./images/logo.png"> | ||
<!-- Icons --> | ||
<script type="module" src="https://unpkg.com/[email protected]/dist/ionicons/ionicons.esm.js"></script> | ||
<script nomodule src="https://unpkg.com/[email protected]/dist/ionicons/ionicons.js"></script> | ||
<!-- Fonts --> | ||
<link rel="preconnect" href="https://fonts.googleapis.com"> | ||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin> | ||
<link href="https://fonts.googleapis.com/css2?family=Noto+Kufi+Arabic:[email protected]&display=swap" rel="stylesheet"> | ||
<script src="https://cdn.tailwindcss.com"></script> | ||
|
||
<script src="./js/script.js"></script> | ||
</head> | ||
<style> | ||
body { | ||
font-family: "Noto Kufi Arabic", sans-serif; | ||
} | ||
</style> | ||
<body > | ||
<!-- Start Navbar --> | ||
<div id="navbar"></div> | ||
<!-- End Navbar --> | ||
|
||
<!-- Start Section --> | ||
<div class="container mx-auto p-5"> | ||
<h2 class="text-[#2B2F4E] font-bold sm:text-[40px] text-2xl mt-5"> الاشعارات</h2> | ||
<div class="flex flex-col items-center justify-center gap-10 mt-20"> | ||
<img src="./images/notification.webp" alt="Notification"> | ||
<h2 class="sm:text-[39.19px] text-2xl font-medium text-[#111827]">ليس لديك اي اشعارات</h2> | ||
</div> | ||
</div> | ||
<!-- End Section --> | ||
|
||
<!-- Start Icons --> | ||
<div id="icons"></div> | ||
<!-- End Icons --> | ||
|
||
<!-- Start Footer --> | ||
<div id="footer" class="md:block hidden"></div> | ||
<!-- End Footer --> | ||
</body> | ||
</html> |