-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmail.html
More file actions
89 lines (86 loc) · 2.21 KB
/
mail.html
File metadata and controls
89 lines (86 loc) · 2.21 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
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
<!DOCTYPE html>
<html lang="ar" dir="rtl">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css">
<title>جريدة السبت</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f4f4f4;
}
.container {
max-width: 600px;
margin: 20px auto;
background-color: #ffffff;
border-radius: 8px;
overflow: hidden;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.header {
text-align: center;
}
.header img {
max-width: 100%;
height: auto;
}
.content {
padding: 20px;
text-align: center;
font-size: 18px;
color: #333;
}
.footer {
background-color: #f1f1f1;
padding: 10px;
text-align: center;
font-size: 16px;
color: #666;
border-top: 1px solid #ddd;
}
.social-icons {
margin-top: 10px;
}
.social-icons a {
margin: 0 5px; /* Adjusted margin for closer spacing */
text-decoration: none;
color: #007bff;
font-size: 18px; /* Smaller icon size */
}
</style>
</head>
<body>
<div class="container">
<div class="header">
<img class="header-image" src="./Assets/Blue and Black Futuristic Welcome To Our Email Header.jpg" alt="Newspaper header">
</div>
<div class="content">
<p>,{{to_name}} مرحبًا</p>
<p>!نقدم لك نشرتنا بشكل خاص قبل الجميع, نتمنى لك قراءة ماتعة</p>
<iframe allowfullscreen="" scrolling="no" class="fp-iframe" style="border: 1px solid lightgray; width: 100%; height: 400px;" src="https://heyzine.com/flip-book/30d76a1331.html"></iframe>
</div>
</div>
<div class="footer">
<p>
فريق جريدة السبت | عقول التقنية
</p>
<div class="social-icons">
<a href="https://x.com/TechMindsMedia" target="_blank">
<i class="fab fa-twitter"></i>
</a>
<a href="https://www.linkedin.com/company/techmindsmedia/mycompany/" target="_blank">
<i class="fab fa-linkedin"></i>
</a>
<a href="https://t.me/TechMindsMedia" target="_blank">
<i class="fab fa-telegram-plane"></i>
</a>
<a href="https://forms.gle/WpfLXL6nhZTdswAH7" target="_blank">
<i class="fas fa-link"></i>
</a>
</div>
</div>
</body>
</html>