-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
44 lines (43 loc) · 1.13 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="stylesheet" href="css/reset.css" />
<link rel="stylesheet" href="css/tutorial.css" />
<title>Front.Tips - CSS Margin with RTL elements</title>
</head>
<body>
<h1>Left to Right (LTR)</h1>
<div class="card">
<img
class="avatar"
src="./images/avatar-1.png"
alt=""
/>
<div class="content">
<h2>Streamline Pro App</h2>
<p>
Streamline Pro is an innovative app offering a
comprehensive suite of tools for efficient project
management.
</p>
</div>
</div>
<h1>Right to Left (RTL)</h1>
<div class="card rtl">
<img
class="avatar"
src="./images/avatar-2.png"
alt=""
/>
<div class="content">
<h2>برنامج Streamline Pro</h2>
<p>
برنامج Streamline Pro هو تطبيق مبتكر يقدم مجموعة
شاملة من الأدوات لإدارة المشاريع بكفاءة وتعاون
الفريق.
</p>
</div>
</div>
</body>
</html>