diff --git a/images b/images new file mode 100644 index 0000000..e69de29 diff --git a/index.html b/index.html new file mode 100644 index 0000000..eb86cb9 --- /dev/null +++ b/index.html @@ -0,0 +1,115 @@ + + + + + + Jamiir Parker | Developer + + + + + + +
+ +
+ + +
+ + Jamiir Parker +

Jamiir Parker

+

Aspiring Software Developer

+

Building modern, user-focused web applications with clean design and strong functionality.

+
+ + +
+

About Me

+

+ 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. +

+

+ 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. +

+
+ + +
+

Experience

+
+

Supervisor

+

Sizemore Inc. | Dec 2021 – 2024

+ +
+
+ + +
+

Education

+

Code Differently — AI-Powered Software Engineering Program (Expected June 2026)

+

Focused on full-stack development, debugging, and agile collaboration.

+

William Penn High School — High School Diploma

+
+ + +
+

Certifications

+ +
+ + +
+

Projects

+
+

Personal Portfolio Website

+

+ Built an interactive web application that includes a Random Task Generator for managing chores and allowances. +

+

+ Helps parents organize responsibilities, track progress, and improve accountability for children. +

+

Tech: HTML, CSS, JavaScript

+

+ View on GitHub +

+
+
+ + +
+

Skills

+

Technical: HTML5, CSS3, JavaScript, Git, GitHub, VS Code

+

Concepts: DOM Manipulation, Debugging, Testing, Agile, Scrum

+

Professional: Problem Solving, Leadership, Team Collaboration, Attention to Detail

+
+ + +
+

Contact

+

Email: jamiird261@gmail.com

+

Phone: (302) 867-2588

+

LinkedIn

+

GitHub

+
+ + + \ No newline at end of file diff --git a/profile.jpg b/profile.jpg new file mode 100644 index 0000000..f2c3a17 Binary files /dev/null and b/profile.jpg differ diff --git a/styles.css b/styles.css new file mode 100644 index 0000000..aac96e4 --- /dev/null +++ b/styles.css @@ -0,0 +1,97 @@ +* { + margin: 0; + padding: 0; + box-sizing: border-box; + font-family: 'Segoe UI', sans-serif; +} + +body { + background: #506595; + color: rgb(246, 246, 242); + line-height: 1.6; +} + +/* NAVBAR */ +header { + background: #020617; + padding: 15px 50px; + position: sticky; + top: 0; + z-index: 100; +} + +nav { + display: flex; + justify-content: space-between; + align-items: center; +} + +nav ul { + display: flex; + gap: 25px; + list-style: none; +} + +nav a { + color: white; + text-decoration: none; + transition: 0.3s; +} + +nav a:hover { + color: #29a2d5; +} + +/* HERO */ +.hero { + text-align: center; + padding: 80px 20px; +} + +.profile-img { + width: 160px; + height: 160px; + object-fit: cover; + border-radius: 50%; + margin-bottom: 25px; + border: 5px solid #1da9db; + box-shadow: 0 0 25px rgba(65, 137, 168, 0.6); + transition: 0.3s; +} + +.profile-img:hover { + transform: scale(1.05); +} + +/* SECTIONS */ +section { + padding: 60px 80px; +} + +h2 { + margin-bottom: 20px; + color: #38bdf8; +} + +/* CARDS */ +.card { + background: #1e293b; + padding: 25px; + margin-bottom: 20px; + border-radius: 12px; + transition: 0.3s; +} + +.card:hover { + transform: translateY(-5px); +} + +/* LINKS */ +a { + color: #38bdf8; +} + +/* CONTACT */ +#contact { + text-align: center; +} \ No newline at end of file