Files
ZanePersonal/index.html

92 lines
3.4 KiB
HTML
Raw Normal View History

2025-09-23 21:18:33 -04:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
2025-09-25 10:09:08 -04:00
<meta name="description" content="ZaneDev - A certified epik guy who likes to make random stuff. Check out my projects and get in touch!">
<meta name="keywords" content="ZaneDev, developer, programming, projects, web development">
<meta name="author" content="ZaneDev">
<meta property="og:title" content="ZaneDev - Personal Website">
<meta property="og:description" content="Bored guy who likes to make random stuff. Check out my projects and connect with me!">
<meta property="og:type" content="website">
<meta property="og:url" content="https://zanedev.com">
<meta name="robots" content="index, follow">
<title>ZaneDev | Personal Website</title>
2025-09-23 21:18:33 -04:00
<link rel="icon" type="image/jpeg" href="Zane.jpg">
<link rel="stylesheet" href="styles.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap" rel="stylesheet">
</head>
<body>
<div class="container">
<!-- Avatar Section -->
<div class="avatar-section">
<div class="avatar">
2025-09-25 10:09:08 -04:00
<img src="Zane.jpg" alt="ZaneDev's Profile Picture" class="profile-image">
2025-09-23 21:18:33 -04:00
</div>
<h1 class="brand-name">ZaneDev</h1>
2025-09-25 07:19:13 -04:00
<p class="tagline">Certified Epik Guy</p>
2025-09-23 21:18:33 -04:00
</div>
<!-- About Section -->
<div class="about-section">
2025-09-25 10:09:08 -04:00
<p class="about-text">Bored guy who likes to make random stuff.</p>
2025-09-24 15:46:35 -04:00
<p class="not-for-hire-note">(not for hire btw)</p>
2025-09-23 21:18:33 -04:00
</div>
<!-- Navigation Section -->
<div class="navigation">
2025-09-25 10:09:08 -04:00
<button class="nav-button projects-button">
2025-09-23 21:18:33 -04:00
<span>Projects</span>
2025-09-25 10:09:08 -04:00
</button>
<a href="https://github.com/ZaneThePython" class="nav-button" target="_blank" rel="noopener noreferrer">
2025-09-23 21:18:33 -04:00
<span>GitHub</span>
</a>
2025-09-24 15:46:35 -04:00
<a href="mailto:contact@zane.org" class="nav-button">
<span>Contact</span>
</a>
2025-09-23 21:18:33 -04:00
</div>
<!-- Disclaimer -->
<div class="disclaimer">
<p><em>*Note* This website is not FDA approved</em></p>
</div>
</div>
2025-09-25 10:09:08 -04:00
<script>
// Projects button popup functionality
document.querySelector('.projects-button').addEventListener('click', function() {
const popup = document.createElement('div');
popup.className = 'popup';
popup.innerHTML = `
<div class="popup-content">
<p>No projects as of now :P</p>
</div>
`;
document.body.appendChild(popup);
// Remove popup after 3 seconds
setTimeout(() => {
popup.style.opacity = '0';
setTimeout(() => popup.remove(), 300);
}, 3000);
});
</script>
2025-09-23 21:18:33 -04:00
<script src="script.js"></script>
2025-09-25 10:09:08 -04:00
<!-- Add structured data for better SEO -->
<script type="application/ld+json">
{
"@context": "http://schema.org",
"@type": "Person",
"name": "ZaneDev",
"url": "https://zanedev.com",
"sameAs": [
"https://github.com/ZaneThePython"
]
}
</script>
2025-09-23 21:18:33 -04:00
</body>
</html>