Skip to content

Commit

Permalink
Add resume website files (HTML and CSS) (#2)
Browse files Browse the repository at this point in the history
- Added index.html containing the structure of my resume website.
- Included styles.css for styling the resume content.
- This commit sets up the foundation for my professional resume website, which will be hosted via GitHub Pages.
  • Loading branch information
westonnelson authored Dec 14, 2024
1 parent 90d2cf6 commit 7899e87
Show file tree
Hide file tree
Showing 2 changed files with 90 additions and 0 deletions.
60 changes: 60 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,60 @@

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Weston Nelson - Resume</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="container">
<h1>Weston Nelson</h1>
<p>Minneapolis, Minnesota</p>
<p>Email: [email protected] | Phone: (763) 318-5893</p>

<div class="section">
<h2>Objective</h2>
<p>Innovative technology professional with extensive experience in blockchain development, business strategy, and community building. Seeking to leverage my skills in smart contract development, interoperability protocols, and strategic partnerships to drive growth for ambitious projects.</p>
</div>

<div class="section">
<h2>Summary</h2>
<p>Experienced blockchain developer, strategist, and builder with a proven track record in delivering creative Web3 solutions...</p>
</div>

<div class="section">
<h2>Core Skills</h2>
<ul>
<li>Blockchain Development: Solidity, JavaScript, Python...</li>
<li>Product & Front-End Development...</li>
</ul>
</div>

<div class="section">
<h2>Professional Experience</h2>
<div class="section-title">Co-Founder | NFTEarth</div>
<p>January 2023 – March 2024</p>
<ul>
<li>Designed and implemented scalable cross-chain solutions...</li>
<li>Managed cloud infrastructure...</li>
</ul>
</div>

<div class="section">
<h2>Education</h2>
<ul>
<li>University of St. Thomas, Saint Paul, Minnesota: Bachelor of Arts, Business Administration - Entrepreneurship (2007 – 2011)</li>
</ul>
</div>

<div class="section">
<h2>Certifications</h2>
<ul>
<li>Data Analytics for Business Professionals — LinkedIn</li>
<li>Telling Stories with Data — LinkedIn</li>
</ul>
</div>
</div>
</body>
</html>
30 changes: 30 additions & 0 deletions styles.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@

body {
font-family: Arial, sans-serif;
line-height: 1.6;
margin: 0;
padding: 0;
background-color: #f4f4f4;
}
.container {
max-width: 800px;
margin: 20px auto;
background: #fff;
padding: 20px;
border-radius: 8px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
h1, h2 {
color: #333;
}
.contact, .section {
margin-bottom: 20px;
}
ul {
padding-left: 20px;
}
.section-title {
font-size: 1.2em;
color: #444;
margin-bottom: 10px;
}

0 comments on commit 7899e87

Please sign in to comment.