Skip to content

Commit

Permalink
Create index.html
Browse files Browse the repository at this point in the history
  • Loading branch information
astro348 authored May 27, 2024
0 parents commit 6fd0073
Showing 1 changed file with 175 additions and 0 deletions.
175 changes: 175 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,175 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Daniel Harris - Portfolio</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f4f4f4;
color: #333;
}
.container {
width: 80%;
margin: auto;
overflow: hidden;
}
header {
background: #35424a;
color: #ffffff;
padding-top: 30px;
min-height: 70px;
border-bottom: #e8491d 3px solid;
}
header a {
color: #ffffff;
text-decoration: none;
text-transform: uppercase;
font-size: 16px;
}
header ul {
padding: 0;
list-style: none;
}
header li {
display: inline;
padding: 0 20px 0 20px;
}
header .current a {
color: #e8491d;
}
header #branding {
float: left;
}
header #branding h1 {
margin: 0;
}
header nav {
float: right;
margin-top: 10px;
}
#showcase {
min-height: 400px;
background: url('banner.jpg') no-repeat 0 -400px;
text-align: center;
color: #e8491d;
}
#showcase h1 {
margin-top: 100px;
font-size: 55px;
margin-bottom: 10px;
}
#showcase p {
font-size: 20px;
}
#main {
padding: 20px;
background: #ffffff;
}
.section-title {
text-align: center;
padding: 10px;
margin-top: 10px;
background: #35424a;
color: #ffffff;
}
.section-content {
padding: 20px;
margin-top: 10px;
background: #ffffff;
}
footer {
background: #35424a;
color: #ffffff;
text-align: center;
padding: 20px;
margin-top: 20px;
}
.contact-info {
text-align: center;
padding: 10px;
margin: 20px 0;
}
</style>
</head>
<body>
<header>
<div class="container">
<div id="branding">
<h1>Daniel Harris</h1>
</div>
<nav>
<ul>
<li class="current"><a href="#experience">Experience</a></li>
<li><a href="#skills">Skills</a></li>
<li><a href="#education">Education</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
</div>
</header>
<section id="showcase">
<div class="container">
<h1>Welcome to My Portfolio</h1>
<p>Full Stack Developer with a passion for creating efficient and scalable web applications.</p>
</div>
</section>
<div id="main" class="container">
<section id="experience">
<h2 class="section-title">Experience</h2>
<div class="section-content">
<h3>Recent Projects</h3>
<h4>Convose</h4>
<p><strong>01/2024 - 01/2024 | Sydney, Australia</strong></p>
<ul>
<li>Collaborated with cross-functional teams to develop and maintain a learning and communication website, resulting in a 30% increase in user engagement.</li>
<li>Implemented RESTful APIs in Node.js for efficient data retrieval, enhancing system performance and scalability.</li>
<li>Utilized React to create dynamic user interfaces, improving user experience and reducing bounce rates.</li>
<li>Conducted code reviews, identified areas for improvement, and mentored junior team members to ensure code quality and consistency.</li>
<li>Resolved critical production issues by analyzing and debugging code, minimizing system downtime and enhancing reliability.</li>
<li>Integrated continuous integration and continuous delivery (CI/CD) pipelines using CircleCI, automating the deployment process.</li>
</ul>
<h3>Software Developer</h3>
<h4>Tech Innovators Inc</h4>
<p><strong>06/2019 - 12/2023 | New York, NY</strong></p>
<ul>
<li>Designed and implemented a scalable e-commerce platform using React and Node.js, resulting in a 50% increase in sales and a 20% reduction in page load times.</li>
<li>Led a team of 5 developers in creating a mobile application that achieved a 4.8-star rating on the App Store and 50,000 downloads within the first three months.</li>
<li>Developed and maintained internal tools using Python and Flask, improving operational efficiency by 35%.</li>
<li>Integrated third-party payment gateways and optimized checkout processes, reducing cart abandonment rates by 15%.</li>
<li>Spearheaded the migration of legacy systems to cloud infrastructure, resulting in a 40% decrease in hosting costs and improved system reliability.</li>
</ul>
</div>
</section>
<section id="skills">
<h2 class="section-title">Skills</h2>
<div class="section-content">
<p>Agile, Algorithm Design, APIs, CI/CD, CircleCI, Cloud Infrastructure, Continuous Delivery, Continuous Integration, CSS, Data Structures, Database Management, Debugging, DevOps, Docker, Express.js, Flask, Git, HTML, JavaScript, Jira, MongoDB, MySQL, Next.js, Node, Node.js, Payment Gateways, PHP, PostgreSQL, Python, RESTful, RESTful APIs, Scrum, Team Leadership, TypeScript, UI/UX, Visual Studio, Visual Studio Code</p>
</div>
</section>
<section id="education">
<h2 class="section-title">Education</h2>
<div class="section-content">
<h3>Bachelor's Degree in Computer Programming</h3>
<h4>Purdue University--Main Campus</h4>
<p><strong>05/2019 - 05/2019 | West Lafayette, Indiana</strong></p>
</div>
</section>
<section id="contact">
<h2 class="section-title">Contact</h2>
<div class="section-content contact-info">
<p><strong>Phone:</strong> +13364326168</p>
<p><strong>Email:</strong> <a href="mailto:[email protected]">[email protected]</a></p>
<p><strong>Location:</strong> Boul Robert-Bourassa, Montréal QC, Canada</p>
<!-- <p><strong>LinkedIn/Portfolio:</strong> <a href="#">LinkedIn/Portfolio</a></p> -->
</div>
</section>
</div>
<footer>
<p>&copy; 2024 Daniel Harris. All rights reserved.</p>
</footer>
</body>
</html>

0 comments on commit 6fd0073

Please sign in to comment.