-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathindex.html
More file actions
115 lines (105 loc) · 3.84 KB
/
index.html
File metadata and controls
115 lines (105 loc) · 3.84 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>Jamiir Parker | Developer</title>
<!-- FIXED: Correct CSS file name -->
<link rel="stylesheet" href="styles.css" />
</head>
<body>
<!-- NAVBAR -->
<header>
<nav>
<h1 class="logo">Jamiir Parker</h1>
<ul>
<li><a href="#about">About</a></li>
<li><a href="#experience">Experience</a></li>
<li><a href="#projects">Projects</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
</header>
<!-- HERO -->
<section class="hero">
<!-- FIXED: Image path points inside images folder -->
<img src="images/profile.jpg" alt="Jamiir Parker" class="profile-img"/>
<h1>Jamiir Parker</h1>
<h2>Aspiring Software Developer</h2>
<p>Building modern, user-focused web applications with clean design and strong functionality.</p>
</section>
<!-- ABOUT -->
<section id="about">
<h2>About Me</h2>
<p>
I am an entry-level Application Developer currently completing training in AI-Powered Software Engineering.
I have hands-on experience building interactive web applications using JavaScript, HTML, and CSS.
I enjoy solving problems, creating user-friendly experiences, and continuously improving my technical skills.
</p>
<p>
My goal is to become a Junior Software Developer where I can contribute to real-world applications,
collaborate with teams, and grow as an engineer.
</p>
</section>
<!-- EXPERIENCE -->
<section id="experience">
<h2>Experience</h2>
<div class="card">
<h3>Supervisor</h3>
<p>Sizemore Inc. | Dec 2021 – 2024</p>
<ul>
<li>Led daily operations and coordinated warehouse team activities to ensure efficiency</li>
<li>Improved productivity by implementing structured task delegation processes</li>
<li>Collaborated with teams to maintain safety standards and workflow consistency</li>
</ul>
</div>
</section>
<!-- EDUCATION -->
<section>
<h2>Education</h2>
<p><strong>Code Differently</strong> — AI-Powered Software Engineering Program (Expected June 2026)</p>
<p>Focused on full-stack development, debugging, and agile collaboration.</p>
<p><strong>William Penn High School</strong> — High School Diploma</p>
</section>
<!-- CERTIFICATIONS -->
<section>
<h2>Certifications</h2>
<ul>
<li>Certified ScrumMaster — Scrum Alliance (2026)</li>
<li>Java Fundamentals — Oracle (2026)</li>
</ul>
</section>
<!-- PROJECTS -->
<section id="projects">
<h2>Projects</h2>
<div class="card">
<h3>Personal Portfolio Website</h3>
<p>
Built an interactive web application that includes a Random Task Generator for managing chores and allowances.
</p>
<p>
Helps parents organize responsibilities, track progress, and improve accountability for children.
</p>
<p><strong>Tech:</strong> HTML, CSS, JavaScript</p>
<p>
<a href="https://github.com/jamiird261-collab" target="_blank">View on GitHub</a>
</p>
</div>
</section>
<!-- SKILLS -->
<section>
<h2>Skills</h2>
<p><strong>Technical:</strong> HTML5, CSS3, JavaScript, Git, GitHub, VS Code</p>
<p><strong>Concepts:</strong> DOM Manipulation, Debugging, Testing, Agile, Scrum</p>
<p><strong>Professional:</strong> Problem Solving, Leadership, Team Collaboration, Attention to Detail</p>
</section>
<!-- CONTACT -->
<section id="contact">
<h2>Contact</h2>
<p>Email: jamiird261@gmail.com</p>
<p>Phone: (302) 867-2588</p>
<p><a href="https://www.linkedin.com/in/jamiir-parker-1927023a9/" target="_blank">LinkedIn</a></p>
<p><a href="https://github.com/jamiird261-collab" target="_blank">GitHub</a></p>
</section>
</body>
</html>