-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathportfolio.html
More file actions
52 lines (47 loc) · 1.95 KB
/
portfolio.html
File metadata and controls
52 lines (47 loc) · 1.95 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
<!DOCTYPE html>
<html lang="ar" dir="rtl">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>معرض الأعمال - فريسكا</title>
<link rel="stylesheet" href="style.css">
<link rel="icon" href="./assets/favicon.png">
<link href="https://fonts.googleapis.com/css2?family=Cairo:wght@400;600&display=swap" rel="stylesheet">
</head>
<body>
<div id="loader"><img src="assets/logo.png" alt="تحميل فريسكا"></div>
<div id="loader">جاري التحميل...</div>
<div class="header">
<h1><img src="assets/logo.png" alt="شعار فريسكا" style="height:40px;vertical-align:middle;margin-left:10px;"> فريسكا</h1>
<div class="navbar">
<a href="index.html">الرئيسية</a>
<a href="services.html">الخدمات</a>
<a href="about.html">من نحن</a>
<a href="contact.html">اتصل بنا</a>
<a href="blog.html">المدونة</a>
<a href="portfolio.html">الأعمال</a>
<a href="faq.html">الأسئلة الشائعة</a>
<a href="privacy.html">سياسة الخصوصية</a>
</div>
</div>
<div class="container">
<aside class="sidebar">
<h3>القائمة الجانبية</h3>
<ul>
<li><a href="#">روابط مهمة</a></li>
<li><a href="#">أخبار</a></li>
<li><a href="#">تحديثات</a></li>
</ul>
</aside>
<main class="main-content">
<h2>نماذج من أعمالنا</h2><ul><li>متجر XYZ</li><li>تطبيق توصيل</li><li>موقع شركة تعليمية</li></ul>
</main>
</div>
<footer>
© 2025 فريسكا. جميع الحقوق محفوظة.
</footer>
<script src="script.js"></script>
<script src="https://unpkg.com/scrollreveal"></script>
<script>ScrollReveal().reveal(".main-content > *", { duration: 800, origin: "bottom", distance: "30px", easing: "ease-in-out", interval: 100 });</script>
</body>
</html>