-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpageEditor_ST4.html
More file actions
307 lines (274 loc) · 17.9 KB
/
pageEditor_ST4.html
File metadata and controls
307 lines (274 loc) · 17.9 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
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Page Editor Student - Kevin</title>
<link rel="icon" type="image/x-icon" href="images/global/favicon.ico">
<link rel="stylesheet" href="css/global.css" />
<link rel="stylesheet" href="css/pageEditor_validator.css">
</head>
<body>
<header class="main-nav">
<div class="nav-top">
<div class="logo">
<a href="home.html">
<img src="images/global/logo.png" alt="TECHASTRIS">
</a>
</div>
<div class="hamburger-menu" id="hamburger-menu">☰</div>
<nav id="nav-links">
<ul>
<li><a href="home.html">Home</a></li>
<li><a href="about.html">About Us</a></li>
<li><a href="home.html#gallery">Overview</a></li>
<li><a href="volunteer.html">Volunteer</a></li>
<li><a href="teampage.html">Team</a></li>
<li><button id="search-expand">🔍</button></li>
</ul>
</nav>
</div>
<a href="profile.html"><img src="images/global/profile_icon.ico" alt="profile" class="profile-icon"></a>
<button id="themeToggle" class="theme-button"></button>
<!-- Search Bar (Hidden Initially) -->
<div class="search-container" id="search-bar">
<input type="text" placeholder="Search">
<button id="search-btn">Search</button>
<button id="close-search">✖</button>
</div>
</header>
<div id="content">
<section class="stud">
<h2>Kevin Delano Bartholomeusz - 4</h2>
</section>
<div class="container">
<!-- Main content area -->
<main>
<!-- Update those first three sections for the pages you were responsible to implement -->
<section>
<h2 id="profile_page">Profile page</h2>
<h3>Technical Description</h3>
<p>The Profile webpage is a structured, responsive, and cross-browser-compatible HTML document
which intends to showcase a user's personal profile, skills, experience, and volunteering
availability. Designed in HTML, CSS, and JavaScript, the layout is grid-based for organized
presentation of content. There are three main sections on the page: left (Personal information
and skills), middle (biography, goals, and experience), and right (volunteering availability
and supported UN goals). Also allows users to enter contact information throught forms. The
layout is meant to conformably adapt with the size of various display screens through the use
of CSS media queries for a good viewing experience over various devices. The webpage optimally
follows modern accessibility and usability practices, making it both appealing to the eye and
functional.
</p>
<h3>Accessibility</h3>
<p>The website has accessible functions that use semantic HTML elements for better compatibility
with screen readers, appropriate alt texts for pictures, and easy-to-understand links.
The layout is adaptable for mobile users to make it easier to read on small devices. It has
been designed to also allow for keyboard navigation and add buttons for expanded functionality
that will greatly help users with disabilities.
</p>
<h3>Link to the validation page</h3>
<!-- Update the path to link the Page Editor with the splash page -->
<p><a href="validation_ST4.html#profileVal">Profile Page Validation Report</a></p>
<!-- Update the path to link the Page Editor with the validation page and make it jump to the marker that contains a snapshot for the splash page -->
<h3>Link to the page</h3>
<p><a href="profile.html">Profile Page</a></p>
</section>
<section>
<h2 id="sitemap_page">Sitemap page</h2>
<h3>Technical Description</h3>
<p>This HTML document sets up a responsive web page with an SVG-rendered sitemap. It begins by
inserting character encoding and viewport meta tags accordingly, for optimal showing within
preview windows of all screen sizes and devices. It links to an external stylesheet that
governs the webpage with visual styles and includes a favicon for branding purposes. The body
of the document contains an SVG-based sitemap layout, which works as an interactive, visual
representation of any website structure. This method ensures accessibility and clarity while
keeping the entire interface responsive to a very large range of devices.
</p>
<h3>Accessibility</h3>
<p>This webpage is designed with accessibility in mind. It ensures that all content is clearly
structured and easy to navigate for users with disabilities. The SVG sitemap provides a visual
representation of the website's structure, while appropriate semantic HTML elements were used
to improve screen reader compatibility. Meta tags and proper viewport settings ensure that the
page is optimized for both screen sizes and devices, including those used for individuals with
visual impairments. Additionally, using external CSS provides a consistent and visually
appealing layout while supporting high contrast and other user-defined accessibility settings
in browsers.
</p>
<h3>Link to the validation page</h3>
<!-- Update the path to link the Page Editor with the splash page -->
<p><a href="validation_ST4.html#sitemapVal">Sitemap Page Validation Report</a></p>
<!-- Update the path to link the Page Editor with the validation page and make it jump to the marker that contains a snapshot for the splash page -->
<h3>Link to the page</h3>
<p><a href="sitemap.html">Sitemap Page.</a></p>
</section>
<section>
<h2 id="content_page">Content Page</h2>
<h3>Technical Description</h3>
<p>This webpage employs a responsive layout designed with a fixed side navigation menu that provides
quick links to the most important sections regarding marine ecosystems. In terms of styling,
it applies CSS including media queries within an adaptive layout across devices. The hero
section has a background image set to fixed attachment and a semi-transparent overlay to make
the text stand out. JavaScript adds more dynamic functions like hamburger menu, toggle theme,
or search bar. The page consists of semantic HTML tags like the header, section, and footer
provided with accessibility considerations, such as the use of alt text for images and an
appropriate structure selection of headings. Also, with the help of CSS transitions, the side
menu and navigation links are animated interactively.
</p>
<h3>Accessibility</h3>
<p>This website is designed using accessible layout principles. The semantic HTML elements are
easy to identify: header, section, and footer. Text contrast checks out with respect to the
background, and there is some alt text for pictures, which renders them compatible with a
screen reader. The side navigation menu is keyboard-navigable, and the links are
self-explanatory for users with disabilities. The page has also been designed with responsive
styles to ensure usability across different screen sizes. Focus styles on dynamic elements such
as the hamburger menu and search bar are designed with accessibility in mind to operate with
assistive technologies. The content is organized by a proper heading hierarchy, which allows
the entire content to be easily navigated.
</p>
<h3>Link to the validation page</h3>
<!-- Update the path to link the Page Editor with the splash page -->
<p><a href="validation_ST4.html#contentVal">Content Page 4 Validation Report</a></p>
<!-- Update the path to link the Page Editor with the validation page and make it jump to the marker that contains a snapshot for the splash page -->
<h3>Link to the page</h3>
<p><a href="content_ST4.html">Content Page 4</a></p>
</section>
<section>
<h2 id="challenge"> Challenges and Lessons Learned</h2>
<p>Meanwhile, during the development of this project, I encountered challenges related to creating
a seamless and responsive layout across devices. Designing the user profile page required
thoughtful consideration of both functionality and aesthetics. On the way to laying out the
profile, I ensured its easy navigation while providing space for the necessary information,
such as user information and settings. The process involved efficient content structuring
for the sitemap. The content page took the challenge of organizing detailed information in
a way that was user-friendly yet still visually appealing and clear. The main technical
problem involved making the elements responsive. With different screen sizes, maintaining
usability in mobile view involved adjustment of layouts and text sizes. Such adjustments
included the side navbar, hero section, and content layout to fit different screens without
ruining overall design. The second struggle was that of enabling a smooth navigational
experience by ensuring all the links were functional and accessible, including compatibility
for the sidebar menu across different devices. All in all, these challenges involved balancing
design, functionality, and accessibility.
</p>
</section>
<section>
<h2 id="compliance"> Compliance</h2>
<p>
According to the janet compliance copyright laws have been assured as the images used in the
above pages are referenced and attributed to, moreover, the accessibility measures have been
assured (for instance alt text), and other such minor laws have been assured.
</p>
</section>
<section>
<h2 id="ref">References</h2>
<p>The following references & copyrighted material were used during
the development of my assigned pages:
</p>
<ul class="ref">
<li>K. D. Bartholomeusz (2025). [Marine EcoSystem, WideScreen] [AI-generated image using Adobe Express].</li>
<li>K. D. Bartholomeusz (2025). [Marine Ecosystem] [AI-generated image using Adobe Express].</li>
<li>K. D. Bartholomeusz (2025). [Types of Marine ecosystems] [AI-generated image using Adobe Express].</li>
<li>K. D. Bartholomeusz (2025). [Importance of marine ecosystems] [AI-generated image using Adobe Express].</li>
<li>K. D. Bartholomeusz (2025). [Web of life] [AI-generated image using Microsoft Designer].</li>
<li>icongeek26, Chat free icon
<a href="https://www.flaticon.com/free-icon/chat_4585174?related_id=4585174&origin=pack">
https://www.flaticon.com/free-icon/chat_4585174?related_id=4585174&origin=pack
</a>
</li>
<li>icongeek26, Calendar free icon
<a href="https://www.flaticon.com/free-icon/calendar_4585147?related_id=4585147&origin=pack">
https://www.flaticon.com/free-icon/calendar_4585147?related_id=4585147&origin=pack
</a>
</li>
<li>icongeek26, Barrier free icon
<a href="https://www.flaticon.com/free-icon/barrier_4585074?related_id=4585074&origin=pack">
https://www.flaticon.com/free-icon/barrier_4585074?related_id=4585074&origin=pack
</a>
</li>
<li>icongeek26, Compass free icon
<a href="https://www.flaticon.com/free-icon/compass_4585187?related_id=4585187&origin=pack">
https://www.flaticon.com/free-icon/compass_4585187?related_id=4585187&origin=pack
</a>
</li>
<li>icongeek26, Pass free icon
<a href="https://www.flaticon.com/free-icon/pass_4585565?related_id=4585565&origin=pack">
https://www.flaticon.com/free-icon/pass_4585565?related_id=4585565&origin=pack
</a>
</li>
<li>
Kristian Pettyjohn, Avatar, profile, profile page icon
<a href="https://www.iconfinder.com/icons/2624626/avatar_profile_profile_page_user_icon">
https://www.iconfinder.com/icons/2624626/avatar_profile_profile_page_user_icon
</a>
</li>
<li>
All sustainable development goal icons/logos used in the pages were taken from the
following site
<a href="https://www.un.org/sustainabledevelopment/news/communications-material/">
https://www.un.org/sustainabledevelopment/news/communications-material/
</a>
</li>
</ul>
</section>
<p class="top"><a href="#top">Go top</a></p>
</main>
<!-- Sidebar area -->
<aside>
<h3>Core pages developed:</h3>
<!-- Customize this to the role you undertook. Keep only the list items you were responsible to develop, delete the rest -->
<ul class="top-level-ul">
<!-- Keep only the list items you were responsible to develop, delete the rest and update the links to the corresponding markers -->
<li>Student 4</li>
<ul>
<li><a href="#profile_page">Profile page </a></li>
<li><a href="#sitemap_page">Sitemap page</a></li>
<li><a href="#content_page">Content page</a></li>
</ul>
<li><a href="#challenge">Challenges and Lessons Learned</a></li>
<li><a href="#compliance">Compliance</a></li>
<li><a href="#ref">References</a></li>
</ul>
</aside>
</div>
</div>
<!-- Footer Section -->
<footer class="footer">
<a href="https://sdgs.un.org/" target="_blank">
<div class="image-container">
<img src="images/global/image.png" alt="Image 1">
<img src="images/global/logo2.png" alt="Image 2">
</div>
</a>
<!-- Accessibility Links in the center -->
<div class="links">
<a href="home.html">HOME</a>
<a href="about.html">ABOUT US</a>
<a href="home.html#gallery">OVERVIEW</a>
<a href="volunteer.html">VOLUNTEER</a>
<a href="teampage.html">TEAM</a>
<a href="sitemap.html">SITEMAP</a>
<a href="feedback.html">FEEDBACK</a>
<a href="https://sdgs.un.org/goals/goal14" target="_blank">SDG</a>
</div>
<!-- Line below the links -->
<hr>
<!-- Bottom sections -->
<div class="bottom-text">
<div class="membership">
<a href="table.html">Membership</a>
</div>
<div class="extra-links">
<a href="#" onclick="redirect('Kevin')" class="btn">Kevin</a>
<a href="#" onclick="redirect('Avaneesh')" class="btn">Avaneesh</a>
<a href="#" onclick="redirect('Pangajan')" class="btn">Pangajan</a>
<a href="#" onclick="redirect('Imayuru')" class="btn">Imayuru</a>
</div>
<div class="copyright">
<p>© 2025 TECHASTRIS.</p>
</div>
</div>
</footer>
<!-- JavaScript Files -->
<script src="js/nav-search.js"></script>
<script src="js/redirect.js" defer></script>
</body>
</html>