Skip to content

Commit a8b5e7e

Browse files
committed
chnaged to a static pure html.css and js portfolio website for a coursera project
1 parent fe175d1 commit a8b5e7e

466 files changed

Lines changed: 634 additions & 127450 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

About.html

Lines changed: 67 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,67 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8">
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
6+
7+
<!-- SEO -->
8+
<title>About | Osayami – Game Developer Portfolio</title>
9+
<meta name="description" content="Learn more about Osayami, an independent game developer working with Godot and open-source tools.">
10+
<meta name="author" content="Osayami">
11+
12+
<!-- Accessibility -->
13+
<meta name="color-scheme" content="dark light">
14+
15+
<link rel="stylesheet" href="styles.css">
16+
</head>
17+
18+
<body>
19+
<header>
20+
<nav class="nav" aria-label="Main navigation">
21+
<a class="logo" href="Index.html">Osayami</a>
22+
23+
<button
24+
class="nav-toggle"
25+
aria-label="Open menu"
26+
aria-expanded="false"
27+
aria-controls="nav-menu">
28+
29+
</button>
30+
31+
<ul id="nav-menu" class="nav-menu">
32+
<li><a href="Index.html">Home</a></li>
33+
<li><a href="About.html">About</a></li>
34+
<li><a href="Contact.html">Contact</a></li>
35+
</ul>
36+
</nav>
37+
</header>
38+
39+
40+
<main class="container" id="main-content">
41+
<section id="about" aria-labelledby="about-heading">
42+
<h1 id="about-heading">About Me</h1>
43+
44+
<p>
45+
I am an independent game developer focused on building interactive
46+
experiences using <strong>Godot</strong>. My work emphasizes clarity,
47+
experimentation, and sustainable learning.
48+
</p>
49+
50+
<p>
51+
I work across the full development pipeline including design,
52+
programming, and iteration, with a strong interest in open-source
53+
technologies and accessible tooling.
54+
</p>
55+
56+
<p>
57+
This portfolio presents selected projects that reflect my technical
58+
growth and creative direction.
59+
</p>
60+
</section>
61+
</main>
62+
63+
<footer role="contentinfo">
64+
<p>© 2026 Osayami</p>
65+
</footer>
66+
</body>
67+
</html>

App.razor

Lines changed: 0 additions & 6 deletions
This file was deleted.

Components/AnnotatableParagraph.razor

Lines changed: 0 additions & 88 deletions
This file was deleted.

Components/AnnotatedSpan.razor

Lines changed: 0 additions & 24 deletions
This file was deleted.

Components/CreateAnnotationDialog.razor

Lines changed: 0 additions & 43 deletions
This file was deleted.

Components/ParagraphRenderer.razor

Lines changed: 0 additions & 81 deletions
This file was deleted.

Contact.html

Lines changed: 72 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,72 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8">
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
6+
7+
<!-- SEO -->
8+
<title>Contact | Osayami – Game Developer</title>
9+
<meta name="description" content="Contact Osayami for game development projects, collaborations, or inquiries.">
10+
<meta name="author" content="Osayami">
11+
12+
<!-- Accessibility -->
13+
<meta name="color-scheme" content="dark light">
14+
15+
<link rel="stylesheet" href="styles.css">
16+
</head>
17+
18+
<body>
19+
<header>
20+
<nav class="nav" aria-label="Main navigation">
21+
<a class="logo" href="Index.html">Osayami</a>
22+
23+
<button
24+
class="nav-toggle"
25+
aria-label="Open menu"
26+
aria-expanded="false"
27+
aria-controls="nav-menu">
28+
29+
</button>
30+
31+
<ul id="nav-menu" class="nav-menu">
32+
<li><a href="Index.html">Home</a></li>
33+
<li><a href="About.html">About</a></li>
34+
<li><a href="Contact.html">Contact</a></li>
35+
</ul>
36+
</nav>
37+
</header>
38+
39+
40+
<main class="container" id="main-content">
41+
<section id="contact" aria-labelledby="contact-heading">
42+
<h1 id="contact-heading">Contact</h1>
43+
44+
<p>
45+
You can reach me through the following platforms for collaboration,
46+
project inquiries, or general questions.
47+
</p>
48+
49+
<address>
50+
<ul>
51+
<li>
52+
Itch.io:
53+
<a href="https://osayami.itch.io" target="_blank" rel="noopener">
54+
osayami.itch.io
55+
</a>
56+
</li>
57+
<li>
58+
GitHub:
59+
<a href="https://github.com/osayami" target="_blank" rel="noopener">
60+
github.com/osayami
61+
</a>
62+
</li>
63+
</ul>
64+
</address>
65+
</section>
66+
</main>
67+
68+
<footer role="contentinfo">
69+
<p>© 2026 Osayami</p>
70+
</footer>
71+
</body>
72+
</html>

0 commit comments

Comments
 (0)