<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Trailblazer Media</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f4f4f9;
color: #333;
}
header {
background-color: #333;
color: white;
padding: 1rem;
text-align: center;
}
nav {
display: flex;
justify-content: center;
background-color: #444;
padding: 0.5rem 0;
}
nav a {
color: white;
text-decoration: none;
margin: 0 1rem;
font-weight: bold;
}
nav a:hover {
text-decoration: underline;
}
.container {
padding: 2rem;
max-width: 900px;
margin: auto;
}
.about-me img {
max-width: 150px;
border-radius: 50%;
margin-right: 1rem;
}
.about-me {
display: flex;
align-items: center;
background-color: #fff;
padding: 1rem;
border-radius: 8px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
margin-bottom: 2rem;
}
.social-links {
display: flex;
justify-content: space-around;
margin-top: 2rem;
}
.social-links a {
text-decoration: none;
color: #555;
font-size: 1.2rem;
padding: 0.5rem;
}
.social-links a:hover {
color: #0073e6;
}
footer {
background-color: #333;
color: white;
text-align: center;
padding: 1rem 0;
margin-top: 2rem;
}
</style>
</head>
<body>
<header>
<h1>Trailblazer Media</h1>
</header>
<nav>
<a href="#about-me">About Me</a>
<a href="#social-media">Social Media</a>
<a href="#stay-connected">Stay Connected</a>
</nav>
<div class="container">
<section id="about-me" class="about-me">
<img src="https://trailblazermediany.com/wp-content/uploads/2024/12/Updated-Photo-1.jpeg">
<div>
<h2>About Me</h2>
<p>Welcome to Trailblazer Media, where passion meets creativity. With a proven track record of growing digital footprints, I bring a dynamic approach to social media strategy and content creation. Let’s innovate, connect, and inspire together!</p>
</div>
</section>
<section id="social-media">
<h2>Social Media</h2>
<ul>
<li><a href="https://www.instagram.com/trail.blaiser/" target="_blank">Instagram</a></li>
<li><a href="https://www.linkedin.com/in/blaisesindone/" target="_blank">LinkedIn</a></li>
<li><a href="https://www.tiktok.com/@trailblaiser" target="_blank">TikTok</a></li>
<li><a href="https://youtu.be/ZXkCspFstL8?si=MilB8h__8Wbk9_UU" target="_blank">YouTube Video 1</a></li>
<li><a href="https://youtu.be/D7cKZR25v0A?si=G5QUaAvC5Dc_YiUF" target="_blank">YouTube Video 2</a></li>
</ul>
</section>
<section id="stay-connected">
<h2>Stay Connected</h2>
<p>Join the Trailblazer Media community and stay inspired! Be the first to hear about new projects, behind-the-scenes content, and exclusive updates. Let’s connect and make a positive impact together.</p>
</section>
</div>
<footer>
<p>© 2024 Trailblazer Media. All rights reserved.</p>
</footer>
</body>
</html>