From 7899e87dab7939c172309c5cbbb4b411d898fd84 Mon Sep 17 00:00:00 2001 From: Weston Nelson <29180454+westonnelson@users.noreply.github.com> Date: Sat, 14 Dec 2024 12:30:23 -0600 Subject: [PATCH] Add resume website files (HTML and CSS) (#2) - 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. --- index.html | 60 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ styles.css | 30 +++++++++++++++++++++++++++ 2 files changed, 90 insertions(+) create mode 100644 index.html create mode 100644 styles.css diff --git a/index.html b/index.html new file mode 100644 index 0000000..cf0c50b --- /dev/null +++ b/index.html @@ -0,0 +1,60 @@ + + + + + + + Weston Nelson - Resume + + + +
+

Weston Nelson

+

Minneapolis, Minnesota

+

Email: westontnelson@gmail.com | Phone: (763) 318-5893

+ +
+

Objective

+

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.

+
+ +
+

Summary

+

Experienced blockchain developer, strategist, and builder with a proven track record in delivering creative Web3 solutions...

+
+ +
+

Core Skills

+ +
+ +
+

Professional Experience

+
Co-Founder | NFTEarth
+

January 2023 – March 2024

+ +
+ +
+

Education

+ +
+ +
+

Certifications

+ +
+
+ + diff --git a/styles.css b/styles.css new file mode 100644 index 0000000..100e6e3 --- /dev/null +++ b/styles.css @@ -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; +}