-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
58 lines (57 loc) · 2.37 KB
/
Copy pathabout.html
File metadata and controls
58 lines (57 loc) · 2.37 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css">
<title>About Domenic</title>
<style>
body {
background-color: #f8f9fa;
color: #343a40;
}
h2 {
color: #007bff;
}
footer {
margin-top: 2em;
text-align: center;
padding: 1em;
background-color: #343a40;
color: white;
}
footer a {
color: #007bff;
}
footer a:hover {
text-decoration: underline;
}
</style>
</head>
<body>
<nav class="navbar navbar-expand-lg navbar-dark bg-dark">
<a class="navbar-brand" href="#">Domenic Lo Iacono</a>
<div class="collapse navbar-collapse">
<ul class="navbar-nav mr-auto">
<li class="nav-item">
<a class="nav-link" href="index.html">Home</a>
</li>
</ul>
</div>
</nav>
<main class="container mt-5">
<section>
<h2>About Me</h2>
<p>I am an Offensive Security Engineer at Praetorian with Master of Science and Bachelor of Science degrees in Computing Security from Rochester Institute of Technology (RIT). I specialize in offensive security operations including red teaming, penetration testing, vulnerability research, and developing innovative cybersecurity tools. My expertise spans application security, malware analysis, reverse engineering, and advanced threat simulation.</p>
<button class="resume-button" onclick="window.location.href='Current_Domenic_LoIacono_Resume_2024-25.pdf'">View Resume</button>
</section>
</main>
<footer>
<small><a href="https://github.com/WizardML7">GitHub Profile</a> • <a href="mailto:loiacono.domenic@gmail.com">Contact</a></small>
</footer>
<!-- Bootstrap JS (optional) -->
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/@popperjs/core@2.9.3/dist/umd/popper.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script>
</body>
</html>