-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
242 lines (212 loc) · 6.09 KB
/
index.html
File metadata and controls
242 lines (212 loc) · 6.09 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
236
237
238
239
240
241
242
---
layout: default
---
<div class="home">
<header class="hero">
<img src="/assets/images/drew_v2.jpeg" alt="Drew Brown" class="profile-image">
<h1 class="page-heading">Welcome to Doc's Journey</h1>
<h2>Drew E. Brown "Doc"</h2>
<p class="tagline"><em>-- Perseverance leads creation</em></p>
</header>
<section class="intro">
<h2>About Me</h2>
<p>I am a <strong>cybersecurity professional</strong>, <strong>maker</strong>, and <strong>lifelong learner</strong> driven by curiosity and a passion for creating meaningful solutions. My journey spans from military service to graduate-level cybersecurity education, always guided by the principle that <em>perseverance leads creation</em>.</p>
<p>Through hands-on projects, academic research, and professional experience, I bridge the gap between theoretical knowledge and practical application. Whether it's building secure cloud infrastructure, crafting jewelry with precision metalworking, or mentoring the next generation of cybersecurity professionals, I bring the same dedication to excellence and continuous improvement.</p>
<div class="recognition">
<h3>Recognition & Features</h3>
<ul class="links">
<li><a href="https://www.odu.edu/article/class-of-2023-drew-brown-uses-his-educational-journey-to-inspire-others">🎓 Class of 2023: Drew Brown Uses His Educational Journey to Inspire Others</a></li>
<li><a href="https://www.odu.edu/eng/news/2022/1/student_veteran_keep#.YuQxYmHMKw4">🛡️ Student Veteran Aims to Keep Businesses Secure</a></li>
<li><a href="/resume/">📄 Professional Resume</a></li>
</ul>
</div>
<div class="philosophy">
<blockquote>
<p>"Technology is best when it brings people together and solves real problems. My goal is to make cybersecurity accessible, education engaging, and creativity purposeful."</p>
<cite>— Drew E. Brown "Doc"</cite>
</blockquote>
</div>
</section>
<section class="workspace">
<h2>Workspace</h2>
<img src="/assets/images/workspace_setup.jpeg" alt="Workspace Setup - Drew's creative workspace with computer setup" class="workspace-image" loading="lazy" width="600" height="400">
<p>This is my workspace where I love to create and explore all sorts of interesting ideas.</p>
</section>
<section class="navigation-section">
<h2>Explore</h2>
<div class="nav-grid">
<a href="/resume/" class="nav-card">
<h3>Resume</h3>
<p>View my professional experience and qualifications</p>
</a>
<a href="/courses/" class="nav-card">
<h3>Course Listing</h3>
<p>Collection of course materials from my education</p>
</a>
<a href="/projects/" class="nav-card">
<h3>Projects</h3>
<p>Various projects, both in-progress and completed</p>
</a>
<a href="/documentation/" class="nav-card">
<h3>Documentation</h3>
<p>Business development and technical guides</p>
</a>
<a href="/hobbies/" class="nav-card">
<h3>Hobbies</h3>
<p>Personal interests and creative pursuits</p>
</a>
</div>
</section>
</div>
<style>
.hero {
text-align: center;
margin-bottom: 3rem;
padding: 3rem 2rem;
background: linear-gradient(135deg, #0A2540 0%, #3A6EA5 100%);
color: white;
border-radius: 8px;
box-shadow: 0 4px 12px rgba(0,0,0,0.15);
position: relative;
overflow: hidden;
}
.hero::before {
content: '';
position: absolute;
top: -50%;
right: -50%;
width: 100%;
height: 200%;
background: linear-gradient(45deg, transparent 30%, rgba(212, 175, 55, 0.1) 50%, transparent 70%);
transform: rotate(15deg);
pointer-events: none;
}
.profile-image {
width: 150px;
height: 150px;
border-radius: 50%;
object-fit: cover;
margin-bottom: 1rem;
border: 4px solid rgba(255,255,255,0.3);
box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}
.hero h1, .hero h2 {
color: white;
text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}
.tagline {
font-size: 1.2rem;
color: rgba(255,255,255,0.9);
margin-bottom: 2rem;
font-style: italic;
}
.workspace-image {
width: 100%;
max-width: 600px;
display: block;
margin: 1rem auto;
border-radius: 8px;
}
.nav-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 1.5rem;
margin-top: 2rem;
}
.nav-card {
display: block;
padding: 2rem;
background: #ffffff;
border-radius: 8px;
text-decoration: none;
color: inherit;
transition: transform 0.2s ease, box-shadow 0.2s ease, border-left-color 0.2s ease;
border-left: 4px solid #0A2540;
box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.nav-card:hover {
transform: translateY(-3px);
box-shadow: 0 6px 16px rgba(0,0,0,0.15);
text-decoration: none;
color: inherit;
border-left-color: #D4AF37;
}
.nav-card h3 {
margin-top: 0;
color: #0A2540;
font-weight: 600;
}
.nav-card p {
margin-bottom: 0;
color: #6c7b7f;
line-height: 1.6;
}
.links {
list-style: none;
padding: 0;
}
.links li {
margin-bottom: 0.5rem;
}
.links a {
color: #0366d6;
text-decoration: none;
}
.links a:hover {
text-decoration: underline;
}
.recognition {
margin: 2rem 0;
padding: 2rem;
background: #ffffff;
border-radius: 8px;
border-left: 4px solid #D4AF37;
box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.recognition h3 {
margin-top: 0;
color: #D4AF37;
font-size: 1.2rem;
font-weight: 600;
}
.philosophy {
margin: 2rem 0;
}
.philosophy blockquote {
background: linear-gradient(135deg, #0A2540 0%, #3A6EA5 100%);
color: #FAF7F2;
padding: 2.5rem;
border-radius: 8px;
font-style: italic;
font-size: 1.1rem;
line-height: 1.7;
margin: 0;
position: relative;
box-shadow: 0 4px 8px rgba(0,0,0,0.15);
border: 1px solid rgba(212, 175, 55, 0.2);
}
.philosophy blockquote::before {
content: '"';
font-size: 4rem;
position: absolute;
top: -10px;
left: 20px;
opacity: 0.3;
}
.philosophy cite {
display: block;
margin-top: 1rem;
font-style: normal;
font-weight: 500;
text-align: right;
}
.intro p {
font-size: 1.1rem;
line-height: 1.7;
margin-bottom: 1.5rem;
}
.intro strong {
color: #0366d6;
font-weight: 600;
}
</style>