-
Notifications
You must be signed in to change notification settings - Fork 0
/
arabic_share.html
125 lines (97 loc) · 4.51 KB
/
arabic_share.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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,initial-scale=1,maximum-scale=1,user-scalable=no">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="HandheldFriendly" content="true">
<title></title>
<!-- stylesheet -->
<link rel="stylesheet" href="arabic_style.css">
<!-- google fonts -->
<link href="https://fonts.googleapis.com/css?family=Roboto:100,100i,300,300i,400,400i,500,500i,700,700i,900,900i&display=swap" rel="stylesheet">
<!-- gsap -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/2.1.2/TweenMax.min.js"></script>
<!-- AnimeJS -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/animejs/2.0.2/anime.min.js"></script>
<!-- JQuery -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.0.0-beta1/jquery.min.js"></script>
<!--This is for the Social Media Icons-->
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.8.1/css/all.css" integrity="sha384-50oBUHEmvpQ+1lW4y57PTFmhCaXp0ML5d60M1M7uH2+nqUivzIebhndOJK28anvf" crossorigin="anonymous">
</head>
<body>
<header>
<h2 >LOGO (TBA)</h2><br>
<div class="dropdown">
<div class="dropdown-content">
<a class="home" href="#" dir="rtl" lang="ar">الصفحة الرئيسية</a>
<a class="mission" href="#" dir="rtl" lang="ar">مهمتنا</a>
<a class="about"href="#" dir="rtl" lang="ar">معلومات عنا</a>
<a class="share" href="share.html" dir="rtl" lang="ar">شارك</a>
<a class="follow"href="#" dir="rtl" lang="ar">تابع</a>
<a class="englishBack" href="arabic_index.html">ENGLISH</a>
</div>
</div>
<div class="links2"><a href="arabic_index.html"/><i class="fas fa-home" id="homeSymbol"></i></a></div>
</header>
<!-- For the responsive part start-->
<div class="git">
<input type="checkbox" id="check">
<label for="check">
<i class="fas fa-bars" id="btn"></i>
<i class="fas fa-times" id="cancel"></i>
</label>
<div class="sidebar">
<ul>
<li><a href="#" dir="rtl" lang="ar">مهمتنا</a></li>
<li><a href="#" dir="rtl" lang="ar">معلومات عنا</a></li>
<li><a href="share.html" dir="rtl" lang="ar">شارك</a></li>
<li><a href="#" dir="rtl" lang="ar">تابع</a></li>
<li><a href="index.html">ENGLISH</a></li>
</ul>
</div>
</div>
<!-- For the responsive part end-->
<div class="covid19">
<img src="covid19.png">
</div>
<div class="header">
<h1 dir="rtl" lang="ar">شارك من فضلك </h1>
</div>
<div class="share-buttons">
<!-- Email -->
<a href="mailto:?Subject=Simple Share Buttons&Body=I%20saw%20this%20and%20thought%20of%20you!%20 https://simplesharebuttons.com">
<img src="https://simplesharebuttons.com/images/somacro/email.png" alt="Email" />
</a>
<!-- Facebook -->
<a href="http://www.facebook.com/sharer.php?u=https://simplesharebuttons.com" target="_blank">
<img src="https://simplesharebuttons.com/images/somacro/facebook.png" alt="Facebook" />
</a>
<!-- LinkedIn -->
<a href="http://www.linkedin.com/shareArticle?mini=true&url=https://simplesharebuttons.com" target="_blank">
<img src="https://simplesharebuttons.com/images/somacro/linkedin.png" alt="LinkedIn" />
</a>
<!-- Reddit -->
<a href="http://reddit.com/submit?url=https://simplesharebuttons.com&title=Simple Share Buttons" target="_blank">
<img src="https://simplesharebuttons.com/images/somacro/reddit.png" alt="Reddit" />
</a>
<!-- Twitter -->
<a href="https://twitter.com/share?url=https://simplesharebuttons.com&text=Simple%20Share%20Buttons&hashtags=simplesharebuttons" target="_blank">
<img src="https://simplesharebuttons.com/images/somacro/twitter.png" alt="Twitter" />
</a>
</div>
<footer>
<div class="copyright" dir="rtl" lang="ar">جميع الحقوق محفوظة لشركة [اسم المشاركة] 2020©</div>
<a class="tou" href="#" dir="rtl" lang="ar">شروط الاستخدام</a>
<a class="contacts" href="#" dir="rtl" lang="ar">اتصل بنا</a>
</footer>
<script type="text/javascript">
var t1 = new TimelineMax();
t1.to(".covid19", 2, {
delay: 0.1,
opacity: 0.1
//ease: Expo.easeInOut
});
</script>
</body>
</html>