-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathblog.html
86 lines (79 loc) · 2.79 KB
/
blog.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>BLOG - Fekra! Business Solutions</title>
<link href="https://fonts.googleapis.com/css2?family=Cairo:wght@400;700&display=swap" rel="stylesheet">
<link rel="icon" type="Tlogo.png" href="media/Tlogo.png">
<style>
body {
display: flex;
justify-content: center;
align-items: center;
margin: 0;
font-family: 'Cairo', sans-serif;
flex-direction: column;
background: url('media/back.webp') center center no-repeat;
background-size: cover; /* Ensures the image fully fits the screen */
background-attachment: fixed; /* Keeps background fixed while scrolling */
background-position: center; /* Centers the image */
min-height: 100vh; /* Ensures the background covers the full screen */
width: 100%;
overflow: auto; /* Enables scrolling if content is longer */
}
.container {
background: rgba(255, 255, 255, 0.9);
padding: 20px;
border-radius: 10px;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
width: 90%;
max-width: 600px;
margin-top: 5vh; /* Provides suitable spacing for all devices */
}
.blog-subcontainer {
border: 1px solid #ccc;
padding: 10px;
border-radius: 8px;
margin-bottom: 15px;
cursor: pointer;
}
.blog-item {
display: flex;
align-items: center;
}
.blog-item img {
width: 100px;
height: 100px;
object-fit: cover;
border-radius: 8px;
margin-right: 15px;
}
.blog-item .blog-text {
font-size: 16px;
color: #333;
}
</style>
</head>
<body>
<div style="position: absolute; top: 10px; left: 10px;">
<a href="https://fekrasolutions.github.io/Remote-Virtual-Assistance/" target="_self">
<img src="media/Tlogo.png" alt="Language" style="height: 40px; margin-left: 2px;">
</a>
</div>
<div class="container">
<div class="blog-subcontainer" onclick="window.open('blogs/Howtousefekracashiererp.html', '_blank')">
<div class="blog-item">
<img src="media/برنامج كاشير وحسابات المحلات.jpg" alt="Blog Thumbnail">
<div class="blog-text">User-Manual Store Cashier & ERP Systems from Fekra!</div>
</div>
</div>
<div class="blog-subcontainer" onclick="window.open('blogs/202020.html', '_blank')">
<div class="blog-item">
<img src="media/منبه مجاني.png" alt="Blog Thumbnail">
<div class="blog-text">Eyerelax - 202020 - Free Web Alarm</div>
</div>
</div>
</div>
</body>
</html>