-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
292 lines (260 loc) · 7.49 KB
/
about.html
File metadata and controls
292 lines (260 loc) · 7.49 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
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>About — HTML Documentation</title>
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "AboutPage",
"mainEntity": {
"@type": "WebPage",
"name": "About HTML Documentation",
"description": "About this HTML documentation — educational content to help beginners learn HTML clearly and practically.",
"url": "https://scyflix.github.io/HTML-Documentaion/about.html"
}
}
</script>
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "Organization",
"name": "Scyflix HTML Documentation",
"url": "https://scyflix.github.io/HTML-Documentaion/",
"description": "Free educational HTML documentation by Abdulroqib and Iyobosa-Omosivie Edison."
}
</script>
<style>
:root {
--bg: #1e1e1e;
--text-color: #f5f5dc;
--font-size: clamp(1rem, 1.2rem, 4rem);
--border-color: #696969;
--details-bg: #2e2e2e;
--summary-bg: #3b3b3b;
--summary-hover: var(--details-bg);
--link-color: #7fffe1;
--link-border: #7fffe13e;
}
* {
box-sizing: border-box;
}
body {
margin: 0;
padding: 0;
background: var(--bg);
color: var(--text-color);
font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
sans-serif;
line-height: 1.7;
}
main {
max-width: 900px;
margin: 0 auto;
padding: 3rem 1.5rem;
}
h1,
h2,
h3 {
line-height: 1.3;
}
h1 {
font-size: clamp(2rem, 3vw, 3rem);
margin-bottom: 1rem;
text-align: center;
}
h2 {
margin-top: 3rem;
margin-bottom: 0.75rem;
font-size: clamp(1.4rem, 2.2vw, 2rem);
}
p {
font-size: var(--font-size);
max-width: 75ch;
}
.card {
background: var(--details-bg);
border: 1px solid var(--border-color);
border-radius: 8px;
padding: 1.5rem;
margin-top: 1.5rem;
}
.meta {
margin-top: 0.5rem;
font-size: 0.95rem;
opacity: 0.85;
}
a {
color: var(--link-color);
text-decoration: none;
border-bottom: 1px solid var(--link-border);
}
a:hover {
opacity: 0.9;
}
.contact-list {
list-style: none;
padding: 0;
margin: 1rem 0 0;
}
.contact-list li {
margin-bottom: 0.6rem;
}
.contactContainer {
display: flex;
flex-wrap: wrap;
justify-content: space-around;
}
.contactContainer div {
border: 1px solid var(--border-color);
padding: 0 15px;
border-radius: 8px;
margin: 1rem;
}
footer {
margin-top: 4rem;
padding-top: 2rem;
border-top: 1px solid var(--border-color);
font-size: 0.9rem;
opacity: 0.8;
}
.home {
background: var(--border-color);
color: var(--text-color);
padding: 10px;
border-radius: 8px;
position: fixed;
left: 50px;
top: 10px;
}
</style>
</head>
<body>
<main>
<a href="index.html" class="home">←Home</a>
<h1>About This Documentation</h1>
<p>
This website is an educational
<strong>HTML documentation and examples hub</strong> created to help
beginners understand how HTML works — from basic structure to real,
readable examples.
</p>
<p>
The goal is simple:
<strong
>explain HTML clearly, show real examples, and remove
confusion</strong
>.
</p>
<h2>How the examples work</h2>
<p>
All HTML examples in this documentation are written to display correctly
inside a browser while remaining easy to read and understand.
</p>
<div class="card">
<p>Examples in this documentation:</p>
<ul>
<li>
Use escaped characters like <code>&lt;</code> and
<code>&gt;</code>
</li>
<li>Highlight attributes for visual clarity</li>
<li>Include short explanations below each example</li>
<li>Are safe to copy, paste, and experiment with</li>
</ul>
</div>
<h2>Website & examples creator</h2>
<div class="card">
<h3>Oladipo Abdulroqib</h3>
<p class="meta">
Website development, structure, and example implementation
</p>
<p>
Oladipo Abdulroqib designed and developed this documentation website,
structured the examples, and implemented the layout and presentation
of all code samples with a focus on clarity and accessibility.
</p>
</div>
<h2>Documentation writer</h2>
<div class="card">
<h3>Iyobosa-Omosivie Osayande Edison</h3>
<p class="meta">Documentation text & explanations</p>
<p>
Iyobosa-Omosivie Osayande Edison is responsible for the written
instructional content throughout this documentation, focusing on
simple explanations and beginner-friendly learning.
</p>
</div>
<h2>Why this documentation exists</h2>
<p>
Many beginners struggle with HTML because examples are poorly formatted,
concepts are rushed, or real structure is hidden behind complex tools.
</p>
<p>
This project exists to bridge that gap by showing HTML as it really is —
clean, readable, and understandable.
</p>
<h2>Contact</h2>
<div class="card">
<p>For questions, feedback, or collaboration:</p>
<div class="contactContainer">
<div id="abdulroqib">
<h3>Abdulroqib</h3>
<ul class="contact-list">
<li>
Email:
<a href="mailto:abdulroqeeboladipo@gmail.com">
abdulroqeeboladipo@gmail.com
</a>
</li>
<li>
GitHub:
<a href="https://github.com/scyflix" target="_blank">
github.com/scyflix
</a>
</li>
<li>
X / Twitter:
<a href="https://x.com/abdulroqib123" target="_blank">
x.com/abdulroqib123
</a>
</li>
</ul>
</div>
<div id="edison">
<h3>Edison</h3>
<ul class="contact-list">
<li>
Email:
<a
href="mailto:edisonomosivie@gmail.com"
>
edisonomosivie@gmail.com
</a>
</li>
<li>
GitHub:
<a href="https://github.com/EdisonForgeWeb" target="_blank">
github.com/EdisonForgeWeb
</a>
</li>
<li>
X / Twitter:
<a href="https://x.com/EdisonForgeWeb" target="_blank">
x.com/EdisonForgeWeb
</a>
</li>
</ul>
</div>
</div>
</div>
<footer>
<p>
This documentation is a learning-focused project and will continue to
improve over time.
</p>
</footer>
</main>
</body>
</html>