-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
52 lines (45 loc) · 2.23 KB
/
contact.html
File metadata and controls
52 lines (45 loc) · 2.23 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 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>
<main class="main-content" style="max-width: 600px; margin: 2rem auto;">
<h2>اتصل بنا</h2>
<form action="https://formsubmit.co/your@email.com" method="POST">
<input type="hidden" name="_captcha" value="false">
<label for="name">الاسم:</label><br>
<input type="text" id="name" name="name" required style="width:100%;padding:8px;margin-bottom:1rem;"><br>
<label for="email">البريد الإلكتروني:</label><br>
<input type="email" id="email" name="email" required style="width:100%;padding:8px;margin-bottom:1rem;"><br>
<label for="message">رسالتك:</label><br>
<textarea id="message" name="message" rows="5" required style="width:100%;padding:8px;margin-bottom:1rem;"></textarea><br>
<button type="submit" style="padding:10px 20px;">إرسال</button>
</form>
</main>
<footer>
© 2025 فريسكا. جميع الحقوق محفوظة.
</footer>
<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>