Skip to content

Commit

Permalink
Create index.html
Browse files Browse the repository at this point in the history
  • Loading branch information
DavidBates committed May 7, 2024
1 parent 29de1fc commit 8beeae0
Showing 1 changed file with 90 additions and 0 deletions.
90 changes: 90 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,90 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>David Bates - Portfolio</title>
<style>
body, html {
font-family: 'Arial', sans-serif;
margin: 0;
padding: 0;
color: #fff;
background: #333;
}
header {
background: #222;
padding: 10px 20px;
text-align: center;
}
.container {
width: 80%;
margin: 20px auto;
}
section {
background: #444;
margin-bottom: 20px;
padding: 20px;
border-radius: 8px;
}
h2 {
color: #4fa9f6;
}
p, li {
color: #ddd;
}
a {
color: #4fa9f6;
text-decoration: none;
}
</style>
</head>
<body>
<header>
<h1>David Bates</h1>
<p>Digital Innovator & Technology Leader</p>
</header>
<div class="container">
<section id="about">
<h2>About Me</h2>
<p>A technology passionate geek seeking a fulfilling career in coding, project management, and innovation.</p>
</section>
<section id="experience">
<h2>Job Experience</h2>
<ul>
<li><strong>Ozmo - Head of Innovations & Team Lead of Partner Solutions (2016 - Present)</strong>
<p>Leading technical teams and pioneering software solutions in a SaaS environment.</p>
</li>
<li><strong>Modea - Senior Developer (2014 – 2016)</strong>
<p>Advanced the company's digital platforms by developing new technologies and enhancing system architecture.</p>
</li>
</ul>
</section>
<section id="skills">
<h2>Skills</h2>
<ul>
<li>System Architecture</li>
<li>Project Management</li>
<li>Software Development</li>
</ul>
</section>
<section id="languages">
<h2>Languages</h2>
<p>English (Fluent), Spanish (Intermediate)</p>
</section>
<section id="contact">
<h2>Contact Me</h2>
<p>Email: <a href="mailto:[email protected]">[email protected]</a></p>
<p>Phone: 540.750.6692</p>
</section>
<section id="education">
<h2>Education</h2>
<p>Bachelor of Computer Science, Virginia Tech (2002 - 2006)</p>
</section>
<section id="references">
<h2>References</h2>
<p>Available upon request.</p>
</section>
</div>
</body>
</html>

0 comments on commit 8beeae0

Please sign in to comment.