-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
275 lines (231 loc) · 7 KB
/
Copy pathabout.html
File metadata and controls
275 lines (231 loc) · 7 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
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
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About - Connect Blog</title>
<link rel="icon" type="image/x-icon" href="images/c.ico"/>
<link rel="stylesheet" href="style.css">
<style>
body {
margin: 0;
font-family: "Times New Roman", serif;
background: url('images/xp-bg.jpg') no-repeat center center fixed;
background-size: cover;
min-height: 100vh;
}
.about-container {
width: 85%;
max-width: 900px;
max-height: 88vh;
margin: 35px auto;
background: rgba(235, 238, 255, 0.97);
padding: 35px;
border: 1px solid rgba(170, 170, 170, 0.4);
border-radius: 12px;
display: flex;
flex-direction: column;
gap: 22px;
overflow-y: auto;
box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}
h1 {
font-size: 38px;
color: #2c4fa3;
margin-bottom: 18px;
padding-bottom: 12px;
border-bottom: 3px solid #2c4fa3;
}
.about-text {
font-size: 16px;
line-height: 1.7;
color: #333;
}
.about-text h2 {
font-size: 24px;
color: #2c4fa3;
margin-top: 25px;
margin-bottom: 12px;
border-bottom: 2px solid #2c4fa3;
padding-bottom: 8px;
}
.about-text ul {
margin: 12px 0;
padding-left: 28px;
}
.about-text li {
margin-bottom: 10px;
line-height: 1.6;
}
.highlight {
background: linear-gradient(120deg, #a8c0ff33 0%, #3f87a633 100%);
padding: 18px 20px;
border-left: 5px solid #2c4fa3;
border-radius: 8px;
margin: 18px 0;
box-shadow: 0 2px 8px rgba(44, 79, 163, 0.1);
}
.highlight strong {
color: #2c4fa3;
font-size: 17px;
}
.about-buttons {
margin-top: 25px;
display: flex;
flex-wrap: wrap;
gap: 15px;
}
.about-buttons a {
text-decoration: none;
padding: 12px 20px;
background: linear-gradient(135deg, #2c4fa3 0%, #1d357f 100%);
color: white;
border-radius: 8px;
font-weight: bold;
font-size: 15px;
transition: all 0.3s ease;
box-shadow: 0 3px 8px rgba(44, 79, 163, 0.25);
}
.about-buttons a:hover {
background: linear-gradient(135deg, #1d357f 0%, #0f1f4f 100%);
transform: translateY(-2px);
box-shadow: 0 5px 15px rgba(44, 79, 163, 0.4);
}
/* Scrollbar */
.about-container::-webkit-scrollbar {
width: 8px;
}
.about-container::-webkit-scrollbar-thumb {
background: linear-gradient(135deg, #2c4fa3 0%, #1d357f 100%);
border-radius: 4px;
}
.about-container::-webkit-scrollbar-track {
background: #e5e8ff;
border-radius: 4px;
}
/* ===============================
MOBILE RESPONSIVE
=============================== */
@media (max-width: 768px) {
.about-container {
width: 95%;
max-height: 85vh;
margin: 20px auto;
padding: 25px;
}
h1 {
font-size: 30px;
margin-bottom: 15px;
}
.about-text {
font-size: 15px;
}
.about-text h2 {
font-size: 22px;
margin-top: 20px;
}
.about-text ul {
padding-left: 22px;
}
.highlight {
padding: 15px;
}
.highlight strong {
font-size: 16px;
}
.about-buttons {
flex-direction: column;
gap: 12px;
}
.about-buttons a {
text-align: center;
padding: 13px 18px;
font-size: 15px;
}
}
@media (max-width: 480px) {
.about-container {
width: 98%;
padding: 20px;
margin: 15px auto;
}
h1 {
font-size: 26px;
}
.about-text {
font-size: 14px;
}
.about-text h2 {
font-size: 20px;
}
.about-text ul {
padding-left: 20px;
}
.highlight {
padding: 12px 15px;
}
.about-buttons a {
padding: 12px 16px;
font-size: 14px;
}
}
</style>
</head>
<body>
<header class="top-bar">
<div class="left">
<span class="site-icon">C</span>
</div>
<div class="right">
<div class="dropdown">
<button class="dropbtn">More ▾</button>
<div class="dropdown-content">
<a href="profile.html">Profile</a>
<a href="contact.html">Contact</a>
</div>
</div>
</div>
</header>
<div class="about-container">
<h1>About This Blog</h1>
<div class="about-text">
<div class="highlight">
<strong>Welcome!</strong> Thanks for stopping by my little corner of the internet. This is my personal blog where I document my journey, share ideas, and express my thoughts freely.
</div>
<h2>What Is This Blog?</h2>
<p>This blog serves as my digital diary — a space where I write about my daily progress, experiences, and the projects I'm working on. It's a reflection of who I am and what I'm learning along the way.</p>
<h2>What You'll Find Here</h2>
<ul>
<li><strong>Daily Blogs</strong> — My thoughts, reflections, and personal updates</li>
<li><strong>Project Updates</strong> — Progress on things I'm building and creating</li>
<li><strong>Ideas & Insights</strong> — Random thoughts and things I find interesting</li>
<li><strong>Life Experiences</strong> — Stories from my journey through life</li>
</ul>
<h2>Why I Started This</h2>
<p>I believe in documenting the journey, not just the destination. Writing helps me organize my thoughts, track my growth, and maybe inspire someone along the way. This blog is my way of staying accountable and sharing what I learn.</p>
<h2>Blogmate Ecosystem</h2>
<p>
Under BlogMate Ecosystem, you'll find a collection more websites that are related to blogmate projects. I have to bulit a complete Ecosystem, where I can track the whole progess I will do
They are more website under BlogMate Ecosystem projects. They all are have its own purpose, and help me to achieve my goals and keep myself trackable about my progress.
You can find theme in profile page.
</p>
<h2>Stay Updated</h2>
<p>I update this blog regularly with fresh content. New posts, projects, and updates are added frequently — so make sure to check back often!</p>
<div class="highlight">
<strong>Got Questions or Feedback?</strong><br>
I'd love to hear from you! Feel free to reach out through the contact page. Your thoughts and suggestions are always welcome.
If you have any suggestions related to blogmate ecosystem projects, please letme via contact page.
</div>
<p style="text-align: center; font-size: 18px; margin-top: 25px;">
<strong>Happy Reading! </strong><br>
<em>Thank you for being here.</em>
</p>
</div>
<div class="about-buttons">
<a href="index.html">← Back to Blog</a>
<a href="profile.html">View Profile</a>
<a href="contact.html">Contact Me</a>
</div>
</div>
</body>
</html>