-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
153 lines (123 loc) · 4.68 KB
/
index.html
File metadata and controls
153 lines (123 loc) · 4.68 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>Charlie Franzel</title>
<link href="https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500;700&family=Inter:wght@300;400;600&display=swap" rel="stylesheet">
<link rel="stylesheet" href="styles.css" />
</head>
<body>
<!-- HERO -->
<section class="hero-wrapper">
<div class="hero-box">
<div class="hero-text">
<h1>Charlie Franzel</h1>
<p class="subtitle">
Cybersecurity & Network Engineering
</p>
<p class="description">
CySA+, Security+, and Network+ certified IT professional with hands-on experience
in enterprise environments. Focused on security operations, networking, and system administration.
</p>
<div class="links">
<a href="https://www.linkedin.com/in/charlie-franzel-a0a450272/" target="_blank">LinkedIn</a>
<a href="https://github.com" target="_blank">GitHub</a>
<a href="mailto:charliefranzel@gmail.com">Email</a>
</div>
</div>
<div class="hero-image">
<img src="photos/me.png" alt="Profile">
</div>
</div>
</section>
<!-- RESUME -->
<section class="resume">
<h1>Experience & Background</h1>
<!-- EXPERIENCE -->
<div class="resume-block">
<h2>Work Experience</h2>
<div class="item">
<h3>IT Technician — Colorado Credit Union</h3>
<span>April 2025 – Present</span>
<ul>
<li>Resolved user issues via ticketing system</li>
<li>Hybrid Active Directory & Intune administration</li>
<li>Vulnerability CVE scoring and analysis</li>
<li>User lifecycle management in AD</li>
<li>Worked with Microsoft Intune & HPE GreenLake</li>
</ul>
</div>
<div class="item">
<h3>Network Engineering Intern — ANM</h3>
<span>May 2024 – August 2024</span>
<ul>
<li>Worked directly with engineers on enterprise projects</li>
<li>Supported DIA network infrastructure</li>
<li>Hands-on experience with switches and network hardware</li>
</ul>
</div>
<div class="item">
<h3>Sales Advisor — Best Buy</h3>
<span>April 2024 – July 2025</span>
<ul>
<li>Specialized in computers and tech solutions</li>
<li>Customer troubleshooting and consultation</li>
</ul>
</div>
</div>
<!-- CERTIFICATIONS -->
<div class="resume-block alt">
<h2>Certifications</h2>
<ul>
<li>CompTIA CySA+</li>
<li>CompTIA Security+</li>
<li>CompTIA Network+</li>
<li>CompTIA A+</li>
<li>CompTIA ITF+</li>
<li>Azure Fundamentals</li>
<li>AWS Cloud Practitioner</li>
<li>OpenEDG PCEP</li>
</ul>
</div>
<!-- EDUCATION -->
<div class="resume-block">
<h2>Education</h2>
<div class="item">
<h3>Warren Tech Central</h3>
<span>2024 – 2026</span>
<ul>
<li>Cybersecurity program (Linux, networking, ethical hacking)</li>
<li>President of CTSO</li>
<li>CTF participation</li>
</ul>
</div>
<div class="item">
<h3>Chatfield Senior High</h3>
<span>2022 – 2026</span>
</div>
</div>
<!-- PROJECTS -->
<div class="resume-block alt">
<h2>Projects & Achievements</h2>
<ul>
<li>Built DMZ-style subnet in home lab</li>
<li>Rack server + Cisco switching environment</li>
<li>2nd place OreSec CTF</li>
<li>State-level DECA & FBLA awards</li>
</ul>
</div>
<!-- BADGES -->
<div class="badges">
<a href="https://www.credly.com/badges/1f77eafb-bf1f-489b-bd57-2cceba9d751c"><img src="photos/cysa.png"></a>
<a href="https://www.credly.com/badges/33950e85-5526-4fcf-b013-2909fe621745"><img src="photos/sec.png"></a>
<a href="https://www.credly.com/badges/0efbd7b7-d19c-487f-b742-975e55dc1a14"><img src="photos/netplus.png"></a>
<a href="https://www.credly.com/badges/4caebde5-8c54-405b-a474-d56d57af2a8f"><img src="photos/aplus.png"></a>
<a href="https://www.credly.com/badges/0c59a08a-ce20-4b95-9aa1-e86bb41a84c1"><img src="photos/itf.png"></a>
<a href="https://www.credly.com/badges/1a7caaed-82d0-41de-abde-f770c06484e1"><img src="photos/awscp.png"></a>
<a href="https://www.credly.com/badges/1a7caaed-82d0-41de-abde-f770c06484e1"><img src="photos/az.png"></a>
<a href="https://www.credly.com/badges/7b19f0d2-997c-4e94-acc3-e55dc5f3dc8b"><img src="photos/pcep.png"></a>
</div>
</section>
</body>
</html>