Example
Example
1
<!DOCTYPE html>
2
<html>
3
<head>
4
<title>Developer Photo Gallery</title>
5
</head>
6
<body>
7
8
<header>
9
<h1>Web Development Studio Gallery</h1>
10
<p>Explore our collaborative workspaces and design blueprints.</p>
11
</header>
12
13
<main>
14
<figure>
15
<img src="workspace1.jpg" alt="Developer coding with VS Code on Windows 11" loading="lazy" width="600" height="350">
16
<figcaption>Figure 1: High performance dual-monitor coding setup.</figcaption>
17
</figure>
18
19
<figure>
20
<img src="workspace2.jpg" alt="UI/UX wireframe design review" loading="lazy" width="600" height="350">
21
<figcaption>Figure 2: Architecture wireframing and database modeling.</figcaption>
22
</figure>
23
</main>
24
25
<footer>
26
<p>© 2026 Nextsem Academy. All rights reserved.</p>
27
</footer>
28
29
</body>
30
</html>
