-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
58 lines (53 loc) · 2.3 KB
/
Copy pathindex.html
File metadata and controls
58 lines (53 loc) · 2.3 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Prince John's Portfolio</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<!-- Navigation Header -->
<header class="hero-section">
<div class="hero-content">
<h1>Prince John's <span class=highlight>Contribution & Work Portfolio</span></h1>
<p>Currently contributing to the Godot Engine source</p>
</div>
</header>
<!-- Projects Grid Section -->
<section id="projects" class="projects-section">
<h2>My Work</h2>
<div class="projects-grid">
<!-- Project Card 1 -->
<div class="project-card">
<h3>Godot Engine</h3>
<p>An open source 2D and 3D game enigne maintained by the Godot Foundation and powered by community.</p>
<div class="project-links">
<a href="https://github.com/godotengine/godot/pulls?q=is%3Amerged+is%3Apr+author%3Aunit-tick+" target="_blank" class="project-link">My Merged Contributions</a>
<a href="https://github.com/godotengine/godot/pulls/unit-tick" target="_blank" class="project-link">All Contributions</a>
</div>
</div>
<div class="project-card">
<h3>Unit-Tick/Godot Engine</h3>
<p>Nothing much to see there at the moment, but feel free to check it out.</p>
<div class="project-links">
<a href="https://github.com/unit-tick/godot" target="_blank" class="project-link repo">My Godot Repo</a>
</div>
</div>
</div>
</section>
<!-- Contact Section -->
<section id="contact" class="contact-section">
<h2>Get In Touch</h2>
<p>I am currently looking for new opportunities. Let's connect!</p>
<div class="social-links">
<a href="mailto:official.prince.john@gmail.com">Email Me</a>
<a href="https://github.com/unit-tick" target="_blank">GitHub</a>
</div>
</section>
<!-- Footer -->
<footer>
<p>© 2026 Prince John. Built with HTML & CSS.</p>
</footer>
</body>
</html>