-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
67 lines (55 loc) · 2.02 KB
/
about.html
File metadata and controls
67 lines (55 loc) · 2.02 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- SEO -->
<title>About | Osayami – Game Developer Portfolio</title>
<meta name="description" content="Learn more about Osayami, an independent game developer working with Godot and open-source tools.">
<meta name="author" content="Osayami">
<!-- Accessibility -->
<meta name="color-scheme" content="dark light">
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<nav class="nav" aria-label="Main navigation">
<a class="logo" href="Index.html">Osayami</a>
<button
class="nav-toggle"
aria-label="Open menu"
aria-expanded="false"
aria-controls="nav-menu">
☰
</button>
<ul id="nav-menu" class="nav-menu">
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
</header>
<main class="container" id="main-content">
<section id="about" aria-labelledby="about-heading">
<h1 id="about-heading">About Me</h1>
<p>
I am a self taught dotnet developer focused on building apps and interactive
experiences using <strong>Godot</strong>. My work emphasizes clarity,
experimentation, and sustainable learning.
</p>
<p>
I work across the full development pipeline including planning and design,
programming, and iteration, with a strong interest in open-source
technologies and accessible tooling.
</p>
<p>
This portfolio presents selected projects that reflect my technical
growth and creative direction.
</p>
</section>
</main>
<footer role="contentinfo">
<p>© 2026 Osayami</p>
</footer>
</body>
</html>