-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
235 lines (228 loc) · 10.3 KB
/
Copy pathindex.html
File metadata and controls
235 lines (228 loc) · 10.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Morgan Rogers - Software Developer specializing in Full-Stack Development, Backend Engineering, and Web Application Development">
<meta name="keywords" content="Morgan Rogers, Software Developer, Web Developer, Portfolio">
<meta name="author" content="Morgan Rogers">
<title>Morgan Rogers | Software Developer</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<!-- Navigation -->
<nav class="navbar" id="navbar">
<div class="nav-container">
<div class="logo">
<a href="index.html">Morgan Rogers</a>
</div>
<button class="nav-toggle" id="navToggle" aria-label="Toggle navigation">
<span></span>
<span></span>
<span></span>
</button>
<ul class="nav-menu" id="navMenu">
<li><a href="index.html" class="active">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="resume.html">Resume</a></li>
<li><a href="portfolio.html">Portfolio</a></li>
<li><a href="gallery.html">Gallery</a></li>
<li><a href="blog.html">Blog</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</div>
</nav>
<!-- Hero Section -->
<header class="hero">
<div class="hero-content">
<h1 class="hero-title">Hi, I'm <span class="highlight">Morgan Rogers</span></h1>
<p class="hero-subtitle">Software Developer</p>
<p class="hero-description">Full-Stack Development, Backend Engineering, and Web Application Development</p>
<div class="hero-buttons">
<a href="portfolio.html" class="btn btn-primary">View My Work</a>
<a href="contact.html" class="btn btn-secondary">Get In Touch</a>
</div>
</div>
<div class="hero-scroll">
<span>Scroll Down</span>
<div class="scroll-indicator"></div>
</div>
</header>
<!-- About Preview Section-->
<section class="about-preview" id="about">
<div class="container">
<div class="section-header">
<h2>About Me</h2>
<div class="section-divider"></div>
</div>
<div class="about-grid">
<div class="about-image">
<img src="images/Profile.jpg" alt="Morgan Rogers" loading="lazy">
</div>
<div class="about-content">
<h3>Software Developer with a Passion for Technology</h3>
<p>
I am a software developer and ISC2 CC-certified professional with a foundation in
full-stack development, backend engineering, web application development, and
information security. Experienced building enterprise-grade applications with
JavaScript/TypeScript, Python, React, Node.js, and MongoDB.
</p>
<p>
With a background in production systems support and military information assurance,
I bring a reliability-first, security-conscious engineering mindset to every project
I undertake.
</p>
<a href="about.html" class="btn btn-outline">Learn More</a>
</div>
</div>
</div>
</section>
<!-- Section -->
<section class="skills-section">
<div class="container">
<div class="section-header">
<h2>Technical Expertise</h2>
<div class="section-divider"></div>
</div>
<div class="skills-grid">
<div class="skill-card">
<div class="skill-icon">💻</div>
<h3>Web Development</h3>
<p>HTML5, CSS3, JavaScript, React, TypeScript</p>
<div class="skill-bar">
<div class="skill-progress" data-progress="75"></div>
</div>
</div>
<div class="skill-card">
<div class="skill-icon">🔒</div>
<h3>Cybersecurity</h3>
<p>Network Security, Penetration Testing, Security Analysis</p>
<div class="skill-bar">
<div class="skill-progress" data-progress="70"></div>
</div>
</div>
<div class="skill-card">
<div class="skill-icon">💻</div>
<h3>System Administration</h3>
<p>Linux, Windows Server, Active Directory, VirtualBox</p>
<div class="skill-bar">
<div class="skill-progress" data-progress="80"></div>
</div>
</div>
<div class="skill-card">
<div class="skill-icon">🐍</div>
<h3>Programming</h3>
<p>Python, Java, C#, Go, Rust</p>
<div class="skill-bar">
<div class="skill-progress" data-progress="75"></div>
</div>
</div>
</div>
</div>
</section>
<!-- Projects Preview Section-->
<section class="projects-preview">
<div class="container">
<div class="section-header">
<h2>Featured Projects</h2>
<div class="section-divider"></div>
</div>
<div class="projects-grid">
<article class="project-card">
<div class="project-image">
<img src="images/home-lab.jpg" alt="Home Lab Environment" loading="lazy">
</div>
<div class="project-content">
<h3>Home Lab Environment</h3>
<p>Comprehensive home lab for security testing and network analysis using VirtualBox and Docker.</p>
<div class="project-tags">
<span class="tag">VirtualBox</span>
<span class="tag">Docker</span>
<span class="tag">Security</span>
</div>
</div>
</article>
<article class="project-card">
<div class="project-image">
<img src="images/web-dev.jpg" alt="Web Development Projects" loading="lazy">
</div>
<div class="project-content">
<h3>Web Development Projects</h3>
<p>Modern web applications built with React, TypeScript, and responsive design principles.</p>
<div class="project-tags">
<span class="tag">React</span>
<span class="tag">TypeScript</span>
<span class="tag">CSS Grid</span>
</div>
</div>
</article>
<article class="project-card">
<div class="project-image">
<img src="images/sec-an.jpg" alt="Security Analysis" loading="lazy">
</div>
<div class="project-content">
<h3>Security Analysis</h3>
<p>Security tools and scripts for network enumeration and penetration testing.</p>
<div class="project-tags">
<span class="tag">Python</span>
<span class="tag">Nmap</span>
<span class="tag">Wireshark</span>
</div>
</div>
</article>
</div>
<div class="text-center">
<a href="portfolio.html" class="btn btn-primary">View All Projects</a>
</div>
</div>
</section>
<!-- Contact CTA Section -->
<section class="cta-section">
<div class="container">
<h2>Let's Work Together</h2>
<p>I'm always interested in hearing about new projects and opportunities.</p>
<a href="contact.html" class="btn btn-light">Get In Touch</a>
</div>
</section>
<!-- Footer -->
<footer class="footer">
<div class="container">
<div class="footer-content">
<div class="footer-section">
<h3>Morgan Rogers</h3>
<p>Software Developer</p>
<p>Boston University - MS in CIS</p>
<p>WGU - BS/MS in SWE</p>
</div>
<div class="footer-section">
<h4>Quick Links</h4>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="resume.html">Resume</a></li>
<li><a href="portfolio.html">Portfolio</a></li>
</ul>
</div>
<div class="footer-section">
<h4>Connect</h4>
<ul class="social-links">
<li><a href="https://github.com/PromptNebula05" target="_blank" rel="noopener">GitHub</a></li>
<li><a href="https://www.linkedin.com/in/morgan-rogers-0042972b9/" target ="_blank" rel="noopener">LinkedIn</a></li>
<li><a href="mailto:mrgn.rogers@gmail.com">Email</a></li>
</ul>
</div>
<div class="footer-section">
<h4>Location</h4>
<p>Cornish, Maine 04020</p>
<p>(207) 823-0747</p>
</div>
</div>
<div class="footer-bottom">
<p>© 2026 Morgan Rogers. All rights reserved.</p>
<p class="footer-note">Built with HTML5, CSS3, JavaScript & React</p>
</div>
</div>
</footer>
<script src="script.js"></script>
</body>
</html>