-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
60 lines (57 loc) · 2.47 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="styles.css">
<title>Michael Williams - Personal Website</title>
</head>
<body>
<header>
<h1>Welcome to My Personal Website</h1>
<nav>
<ul>
<li><a href="#about">About Me</a></li>
<li><a href="#projects">Projects</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
</header>
<main>
<section id="about">
<h2>About Me</h2>
<h3>Cybersecurity Analyst II at 11:11 Systems</h3>
<div class="about-content">
<p>I'm a Security Analyst specializing in investigating, triaging, and resolving security alerts. With hands-on experience using industry-leading tools like SIEM, EDR, CRS, and SOAR, I ensure our customers' networks remain secure and protected.</p>
<p>My expertise includes:</p>
<ul>
<li>Deep investigation of potential intrusion tactics, techniques, and procedures (TTPs)</li>
<li>Alignment with MITRE ATT&CK framework</li>
<li>Incident response and threat hunting</li>
<li>Security analysis and process improvement</li>
</ul>
<p>With 17 current cybersecurity certifications, I'm actively pursuing growth in:</p>
<ul>
<li>Security Engineering</li>
<li>AI/ML Engineering</li>
<li>AI Alignment and Governance</li>
<li>AI Security</li>
</ul>
<p>I believe in making security accessible through clear communication, delivering technical insights in an actionable, user-friendly manner. My commitment to staying current with security trends ensures I'm always prepared to tackle emerging cyber threats.</p>
</div>
</section>
<section id="projects">
<h2>Projects</h2>
<p>Coming soon...</p>
</section>
<section id="contact">
<h2>Contact</h2>
<p>You can reach me at: <a href="mailto:mwill.itmission@gmail.com">mwill.itmission@gmail.com</a></p>
</section>
</main>
<footer>
<p>© 2024 Michael Williams</p>
</footer>
<script src="script.js"></script>
</body>
</html>