diff --git a/mesheikbrown/src/Images/headshot.jpeg b/mesheikbrown/src/Images/headshot.jpeg new file mode 100644 index 0000000..7ea0fe4 Binary files /dev/null and b/mesheikbrown/src/Images/headshot.jpeg differ diff --git a/mesheikbrown/src/index.html b/mesheikbrown/src/index.html new file mode 100644 index 0000000..322fd5d --- /dev/null +++ b/mesheikbrown/src/index.html @@ -0,0 +1,215 @@ + + + + + + Mesheik Brown Resume + + + + +
+ + +
+ + +
+
+
+

Mesheik Brown

+

IT Support Professional | Aspiring Full Stack Engineer

+

Supporting enterprise systems today while building the skills to develop them tomorrow.

+ + View My Projects + Contact Me + Download Resume +
+ Mesheik Brown +
+
+ + +
+

About Me

+

I am an IT support professional with experience in NOC and Help Desk environments, specializing in infrastructure monitoring, incident triage, and SLA-driven support. + I have hands-on experience using tools like Zabbix, ServiceNow, and Active Directory to diagnose and resolve enterprise system issues. + Currently, I am expanding my skills in software development and automation through the Code Differently AI-Powered Software Engineering program, with a focus on building modern applications and growing as a developer. +

+
+ + +
+

Experience

+
+

NOC Analyst | ADT / Everon Solutions

+

July 2022 - October 2025

+ +
+
+

Help Desk Analyst | USI Insurance

+

October 2021 - July 2022

+ +
+
+ + +
+

Education

+
+

Code Differently AI-Powered Software Engineering Program

+

2025 - Present

+ +
+
+

Alexis I. Dupont High School

+

2012 - 2016

+ +
+
+ + +
+

Certifications

+
+

Certified ScrumMaster

+

2026

+ +
+ +
+ + +
+

Projects

+
+
+

Arcade Lab

+

GitHub Repository

+

Technologies: Java

+
    +
  • Console-based Java application demonstrating loop control, conditionals, and user input to simulate simple arcade-style program logic.
  • +
+ +
+
+

Virtual Bank

+

GitHub Repository

+

Technologies: Java, OOP

+
    +
  • Object-oriented Java banking system implementing classes, inheritance, and account operations such as deposits, withdrawals, and balance management
  • +
+
+
+ + +
+

Midnight Nexus Landing Page

+ +

+ Midnight Nexus Live Demo | + GitHub Repository +

+ +

Technologies: HTML, CSS, JavaScript

+ + +
+ +
+ + +
+

Skills

+
+ +
+

Technical Skills:

+
    +
  • Zabbix
  • +
  • Genetec
  • +
  • ServiceNow
  • +
  • Active Directory
  • +
  • VPN provisioning
  • +
  • TCP/IP fundamentals
  • +
  • HTML
  • +
  • CSS
  • +
  • Java
  • +
  • Git / GitHub
  • +
  • Agile methodologies
  • +
+
+
+ +
+

Professional Skills:

+ +
+ +
+ + +
+

Contact Me

+

Email: mesheik765@gmail.com

+

LinkedIn:https://www.linkedin.com/in/mesheikbrown/

+

GitHub:https://github.com/mesheik

+
+ + + + \ No newline at end of file diff --git a/mesheikbrown/src/mesheik-brown-resume.pdf b/mesheikbrown/src/mesheik-brown-resume.pdf new file mode 100644 index 0000000..ef7fc48 Binary files /dev/null and b/mesheikbrown/src/mesheik-brown-resume.pdf differ diff --git a/mesheikbrown/src/styles.css b/mesheikbrown/src/styles.css new file mode 100644 index 0000000..9e6a6bf --- /dev/null +++ b/mesheikbrown/src/styles.css @@ -0,0 +1,480 @@ +*{ + margin: 0; + padding: 0; + box-sizing: border-box; +} + +html{ + scroll-behavior: smooth; +} + +body{ + font-family: Arial, Helvetica, sans-serif; + background: linear-gradient(135deg, #0b1120, #111827, #1e293b); + color: #e5e7eb; + line-height: 1.6; +} + +/* Keeps sections from stretching edge to edge */ +section { + width: 90%; + max-width: 1100px; + margin: 0 auto; + padding: 80px 0; +} + +/* Section titles */ +h1, h2, h3 { + color: white; +} + +h2 { + font-size: 2rem; + margin-bottom: 20px; + border-left: 4px solid #10b981; + padding-left: 12px; +} + +/* Paragraph spacing */ +p { + margin-bottom: 16px; +} + +/* Lists */ +ul { + padding-left: 20px; +} + +li { + margin-bottom: 10px; +} + +/* Links */ +a { + color: #10b981; + text-decoration: none; +} + +a:hover { + text-decoration: underline; +} + +/* Header and navigation styles */ +header { + background: rgba(15, 23, 42, 0.9); + position: sticky; + top: 0; + z-index: 1000; + backdrop-filter: blur(10px); + border-bottom: 1px solid rgba(255, 255, 255, 0.08); +} + +nav { + width: 90%; + max-width: 1100px; + margin: 0 auto; + padding: 4px 0; +} + +.nav-links { + display: flex; + justify-content: center; + flex-wrap: wrap; + gap: 20px; + list-style: none; +} + +.nav-links a { + color: #e5e7eb; + font-weight: bold; + transition: color 0.3s ease; +} + +.nav-links a:hover { + color: #10b981; +} + + +/* Hero section styles */ +#hero { + min-height: 100vh; + display: flex; + align-items: center; +} + +.hero-text { + flex: 1; +} + +.profile-pic { + flex-shrink: 0; +} + +.hero-content h1 { + font-size: 3.5rem; + margin-bottom: 12px; + color: white; +} + +.hero-content p:first-of-type { + font-size: 1.2rem; + font-weight: bold; + color: #10b981; + margin-bottom: 12px; +} + +.hero-content p:nth-of-type(2) { + max-width: 700px; + font-size: 1.05rem; + color: #cbd5e1; + margin-bottom: 24px; +} + +.profile-pic { + width: 160px; + height: 160px; + object-fit: cover; + border-radius: 50%; + margin-top: 24px; + border: 4px solid #10b981; + box-shadow: 0 0 20px rgba(16, 185, 129, 0.25); +} + +.hero-content { + display: flex; + flex-direction: column; + align-items: center; /* centers horizontally */ + justify-content: center; + text-align: center; /* centers text */ + gap: 20px; +} + +#hero { + min-height: 80vh; + display: flex; + justify-content: center; + align-items: center; +} + +.hero-btn { + display: inline-block; + margin: 8px; + padding: 12px 24px; + background: #10b981; + color: #0f172a; + font-weight: bold; + border-radius: 999px; + transition: transform 0.3s ease, background 0.3s ease; +} + +.hero-btn:hover { + background: #34d399; + text-decoration: none; + transform: translateY(-2px); +} + +#about, +#experience, +#education, +#certifications, +#projects, +#skills, +#contact { + background: rgba(255, 255, 255, 0.04); + margin-top: 30px; + margin-bottom: 30px; + padding: 50px 40px; + border-radius: 20px; + box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25); + border: 1px solid rgba(255, 255, 255, 0.06); +} + +#about p { + max-width: 850px; + font-size: 1.05rem; + color: #cbd5e1; +} + +.experience-item, +.education-item, +.certification-item, +.project-item, +.skills-group { + background: rgba(15, 23, 42, 0.75); + padding: 24px; + border-radius: 18px; + margin-top: 20px; + border: 1px solid rgba(56, 189, 248, 0.15); + box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2); +} + +.experience-item h3, +.education-item h3, +.certification-item h3, +.project-item h3, +.skills-group h3 { + color: #ffffff; + margin-bottom: 10px; +} + +.experience-item p, +.education-item p, +.certification-item p, +.project-item p { + color: #94a3b8; + margin-bottom: 12px; +} + +.project-item a { + font-weight: bold; +} + +.experience-item, +.education-item, +.certification-item, +.project-item, +.skills-group { + transition: transform 0.3s ease, border-color 0.3s ease; +} + +#skills { + display: flex; + flex-direction: column; + gap: 20px; +} + +.skills-group ul { + list-style: disc; + padding-left: 20px; +} + +.skills-group li { + color: #cbd5e1; +} + +#contact p { + font-size: 1.05rem; + color: #cbd5e1; + margin-bottom: 14px; +} + +#contact a { + font-weight: bold; +} + +footer { + text-align: center; + padding: 30px 20px; + color: #94a3b8; + font-size: 0.95rem; +} + +/*Cool Stuff*/ + +.nav-links a, +.hero-btn, +.experience-item, +.education-item, +.certification-item, +.project-item, +.skills-group { + transition: all 0.3s ease; +} + + +.nav-links a { + position: relative; +} + +.nav-links a::after { + content: ""; + position: absolute; + left: 0; + bottom: -6px; + width: 0%; + height: 2px; + background: #10b981; + transition: width 0.3s ease; +} + +.nav-links a:hover::after { + width: 100%; +} + +.hero-btn { + background: #10b981; +} + +.hero-btn:hover { + background: #34d399; +} + +.experience-item:hover, +.education-item:hover, +.certification-item:hover, +.project-item:hover, +.skills-group:hover { + transform: translateY(-6px); + border-color: #10b981; + box-shadow: 0 12px 28px rgba(16, 185, 129, 0.2); +} + +@keyframes fadeUp { + from { + opacity: 0; + transform: translateY(18px); + } + to { + opacity: 1; + transform: translateY(0); + } +} + + +#hero, +#about, +#experience, +#education, +#certifications, +#projects, +#skills, +#contact { + animation: fadeUp 0.8s ease both; +} + +#contact a { + display: inline-block; + margin-left: 6px; +} + +#contact p { + margin-bottom: 18px; +} + + +footer { + text-align: center; + padding: 30px 20px 50px; + color: #94a3b8; + font-size: 0.95rem; +} + +/* Responsive styles */ +@media (max-width: 900px) { + section { + width: 92%; + padding: 40px 25px; + } + + .hero-content { + flex-direction: column; + text-align: center; + gap: 20px; + } + + .hero-content h1 { + font-size: 2.6rem; + } + + .hero-content p:first-of-type { + font-size: 1.1rem; + } + + .hero-content p:nth-of-type(2) { + font-size: 1rem; + max-width: 600px; + } + + .profile-pic { + width: 150px; + height: 150px; + } + + .projects-grid, + .skills-grid { + grid-template-columns: 1fr; + } + + .nav-links { + gap: 14px; + } +} + +@media (max-width: 600px) { + nav { + padding: 14px 0; + } + + .nav-links { + gap: 10px; + font-size: 0.95rem; + } + + section { + width: 94%; + padding: 30px 18px; + } + + .hero-content h1 { + font-size: 2.1rem; + } + + .hero-btn { + display: block; + width: 100%; + max-width: 260px; + text-align: center; + margin: 10px auto; + } + + h2 { + font-size: 1.7rem; + } + + .experience-item, + .education-item, + .certification-item, + .project-item, + .skills-group { + padding: 20px; + } + + #contact p { + word-break: break-word; + } +} + +/* Add a glow behind hero */ +#hero { + position: relative; + overflow: hidden; +} + +#hero::before { + content: ""; + position: absolute; + width: 400px; + height: 400px; + background: radial-gradient(circle, rgba(56,189,248,0.15), transparent); + top: 20%; + left: 50%; + transform: translateX(-50%); + z-index: 0; +} + +.hero-content { + position: relative; + z-index: 1; +} + +.skills-grid { + display: grid; + grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); + gap: 20px; + margin-top: 20px; +} + +.project-item:first-child { + border: 1px solid #10b981; + box-shadow: 0 0 20px rgba(16, 185, 129, 0.2); +} \ No newline at end of file