-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
74 lines (69 loc) · 3.45 KB
/
Copy pathindex.html
File metadata and controls
74 lines (69 loc) · 3.45 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
<!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>
<header>
<div class="logo">Prince <span class="highlight">John</span></div>
<nav>
<a class="active" href="">Home</a>
<a href="overview/overview.html">Overview</a>
<a href="#contact">Contact</a>
</nav>
</header>
<section id="about" class="hero_section">
<div class="hero-content">
<h1>Quick <span class=highlight>About</span></h1>
<h2>Country of Origin: <span style=color:#Da1a35>Tri</span><span style=color:#ffffff>ni</span><span style=color:#000000>dad</span> & <span style=color:#Da1a35>To</span><span style=color:#ffffff>ba</span><span style=color:#000000>go</span></h2>
<p>A small twin island nation in the Caribbean Sea, off the coast of Venezuela</p>
<h2>Bio:</h2>
<p>I am a 24 year old, beginner c++ programmer that has just begun my journey of learning through open source contribution. I made my first ever pull request on April 7th 2026 and my first ever merged contribution was on April 21st 2026. Since Then I have opened <span id=issues></span> issues and contributed <span id=pr></span> bug fixes and features.</p>
<script>
const opened = 8;
const merged = 5;
document.getElementById("issues").textContent = opened;
document.getElementById("pr").textContent = merged;
</script>
</div>
</section>
<!-- 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>Find Me Here</h2>
<p>I am currently interested in new opportunities. Let's connect!</p>
<div class="social-links">
<a href="mailto:unit.tick.26@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>