Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
63 changes: 30 additions & 33 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
<span class="logo-dot"></span>
</div>
<ul class="nav-links" id="navLinks">
<li><a href="#home" onclick="scrollToSection('home')" onclick="void(0)" aria-lable="Home section" target="_self" target="_blank">Home</a></li>
<li><a href="#home" onclick="scrollToSection('home')" aria-label="Home section" target="_self">Home</a></li>
<li><a href="#about" onclick="scrollToSection('about')" aria-label="About section" target="_self" target="_blank">About</a></li>
<li><a href="#skills" onclick="scrollToSection('skills')" aria-label="Skills section" target="_self" target="_blank">Skills</a></li>
<li><a href="#projects" onclick="scrollToSection('projects')" aria-label="Projects section" target="_self" target="_blank">Projects</a></li>
Expand All @@ -55,6 +55,7 @@
<div class="hero-text">
<h1 class="hero-title">
<span class="title-line">Hi, I'm <span class="highlight">Morgan Taylor</span></span>
<br>
</h1>
<h2 class="hero-subtitle">Full-Stack Developer & AI Enthusiast</h2>
<p class="hero-description">Computer Science student passionate about creating innovative web solutions using MERN stack, AI applications for climate change, healthcare, and agriculture. I love building interactive experiences with modern animations and cutting-edge technology.</p>
Expand Down Expand Up @@ -99,19 +100,16 @@ <h2 class="section-title">About Me</h2>
<p>When I'm not coding, you'll find me exploring new web animation techniques, researching AI applications, or working on personal projects that push the boundaries of what's possible with modern web technologies.</p>
<div class="about-stats">
</div>

<section class="stats">
<div class="stat">
<span class="stat-number" data-count="15">0</span>
<span class="stat-label">Projects Completed</span>
</div>
<div class="stat">
<span class="stat-number" data-count="3">0</span>
<span class="stat-label">Years Experience</span>
</div>
<div class="stat">
<span class="stat-number" data-count="10">0</span>
<span class="stat-label">Technologies</span>
</div>
<span class="stat-label">Projects Completed:15</span>
</div>
<div class="stat">
<span class="stat-label">Years Experience:3</span>
</div>
<div class="stat">
<span class="stat-label">Technologies:5</span>
</div>
</div>
</div>
<div class="about-image">
Expand Down Expand Up @@ -188,7 +186,6 @@ <h3>AI Travel Planner</h3>
</div>
</div>
</section>

<section id="contact">
<div class="container">
<h2 class="section-title">Get In Touch</h2>
Expand Down Expand Up @@ -276,25 +273,25 @@ <h3>Let's Connect</h3>
</div>
</section>
</main>

<footer>
<div class="container">
<div class="footer-content">
<div class="footer-logo">
<div class="logo" onclick="scrollToSection('home')" aria-label="Home">
<span class="logo-text">Morgan Taylor</span>
<span class="logo-dot"></span>
</div>
<p>Full-Stack Developer & AI Enthusiast</p>
</div>
<div class="footer-links">
<a href="#home" onclick="scrollToSection('home')">Home</a>
<a href="#about" onclick="scrollToSection('about')">About</a>
<a href="#skills" onclick="scrollToSection('skills')">Skills</a>
<a href="#projects" onclick="scrollToSection('projects')">Projects</a>
<a href="#contact" onclick="scrollToSection('contact')">Contact</a>
</div>
</div>
<!-- Footer HTML -->
<footer>
<div class="footer-container">
<div class="footer-left">
<span class="footer-logo">MorganTaylor</span>
<p>© 2025 MorganTaylor. All rights reserved.</p>
</div>
<div class="footer-right">
<a href="#home">Home</a>
<a href="#about">About</a>
<a href="#skills">Skills</a>
<a href="#projects">Projects</a>
<a href="#contact">Contact</a>
</div>
<div class="footer-socials">
<a href="#" aria-label="GitHub"><i class="fab fa-github"></i></a>
<a href="#" aria-label="LinkedIn"><i class="fab fa-linkedin"></i></a>
<a href="#" aria-label="Twitter"><i class="fab fa-twitter"></i></a>
<a href="#" aria-label="Email"><i class="fas fa-envelope"></i></a>
<div class="footer-bottom">
<p>&copy; 2025 Morgan Taylor. Crafted with passion for innovation.</p>
<p>Computer Science Student | Full-Stack Developer | AI Enthusiast</p>
Expand Down