From 6cbc6ac06c1b8b79784e2ea72d7220a132f8d3d1 Mon Sep 17 00:00:00 2001 From: Charles N Wyble Date: Mon, 18 Nov 2024 15:02:17 -0600 Subject: [PATCH] yehah --- cv/CharlesNWybleLongResume.html | 10 ++++ index.html | 46 +++++++++++++++ non-cv/CharlesNWybleShortResume.html | 88 ++++++++++++++++++++++++++++ styles.css | 74 +++++++++++++++++++++++ 4 files changed, 218 insertions(+) create mode 100644 cv/CharlesNWybleLongResume.html create mode 100644 index.html create mode 100644 non-cv/CharlesNWybleShortResume.html create mode 100644 styles.css diff --git a/cv/CharlesNWybleLongResume.html b/cv/CharlesNWybleLongResume.html new file mode 100644 index 0000000..b759bad --- /dev/null +++ b/cv/CharlesNWybleLongResume.html @@ -0,0 +1,10 @@ +

Charles N Wyble

+

Senior +System Engineer/SRE with extensive Linux/Windows/Networking

+
[ +Github Profile ] . [ +reachableceo@reachableceo.com ] . [ 818 280 7059 ]
+

Austin TX / Raleigh NC / +RemoteEducation

+

High School Graduate

diff --git a/index.html b/index.html new file mode 100644 index 0000000..8d1f545 --- /dev/null +++ b/index.html @@ -0,0 +1,46 @@ + + + + + + + + Charles Wyble Resumes + + + +
+

Welcome to My Resume Page

+

Here you can find links to my resumes in various formats.

+
+ + + + + + + + + + \ No newline at end of file diff --git a/non-cv/CharlesNWybleShortResume.html b/non-cv/CharlesNWybleShortResume.html new file mode 100644 index 0000000..0db0e81 --- /dev/null +++ b/non-cv/CharlesNWybleShortResume.html @@ -0,0 +1,88 @@ +

Charles N Wyble

+

Senior +System Engineer/SRE with extensive Linux/Windows/Networking

+
[ +Github Profile ] . [ +reachableceo@reachableceo.com ] . [ 818 280 7059 ]
+

Austin TX / Raleigh NC / +RemoteSkills

+ +

Projects

+ +

Work history

+ +

Education

+

High School Graduate

diff --git a/styles.css b/styles.css new file mode 100644 index 0000000..254a674 --- /dev/null +++ b/styles.css @@ -0,0 +1,74 @@ +/* Reset some default browser styles */ +* { + margin: 0; + padding: 0; + box-sizing: border-box; +} + +body { + font-family: Arial, sans-serif; + line-height: 1.6; + background-color: #f4f4f4; + color: #333; + padding: 20px; +} + +/* Header Styling */ +header { + background-color: #4CAF50; + color: white; + padding: 20px; + text-align: center; + border-radius: 8px; +} + +header h1 { + font-size: 2.5em; +} + +header p { + font-size: 1.2em; +} + +/* Section for resume links */ +.resume-links { + margin-top: 40px; +} + +.resume-links h2 { + font-size: 2em; + margin-bottom: 20px; +} + +.resume-links ul { + list-style: none; + padding-left: 0; +} + +.resume-links li { + margin: 10px 0; +} + +.resume-link { + text-decoration: none; + font-size: 1.1em; + color: #4CAF50; + border: 2px solid #4CAF50; + padding: 10px 15px; + border-radius: 5px; + display: inline-block; + transition: all 0.3s ease; +} + +.resume-link:hover { + background-color: #4CAF50; + color: white; +} + +/* Footer Styling */ +footer { + margin-top: 50px; + text-align: center; + font-size: 1em; + color: #777; +}