-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
89 lines (82 loc) · 3.38 KB
/
index.html
File metadata and controls
89 lines (82 loc) · 3.38 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="icon" href="terminal.png" type="image/png">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<title>Anael Russo Terminal Portfolio</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="container">
<!-- Bio Section -->
<section class="bio-section">
<div class="profile-container">
<!-- Profile Image -->
<!-- <div class="profile-image"></div> -->
<!-- Bio Content -->
<div class="bio-content">
<h1>Anael Russo</h1>
<h2> IT ENGINEER with PenTesting Skills</h2>
<!-- About Me Section -->
<div class="about-me">
<h3>About Me</h3>
Infrastructure & Cloud professional with hands-on experience managing and modern
IT environments across Microsoft 365, Entra ID, Intune, Windows Server, networking,
and enterprise security platforms. Skilled in troubleshooting and automating cloud and
on-prem infrastructure, with strong focus on identity management, endpoint security,
and network & FW administration.
</div>
<!-- Skills Section -->
<div class="skills">
<h3>Skills</h3>
Technical Aptitude <br>
Hacker Mindset <br>
Root Cause Analysis <br>
Documenting operational procedures <br>
Ability to Multitask <br>
Ability to Work Under Pressure <br>
</div>
<!-- Contact Information -->
<div class="contact">
<h3>Contact</h3>
find me on LinkedIn and GitHub <br>
</div>
</div>
</div>
<div class="social-buttons">
<a href="https://www.linkedin.com/in/anael-russo/" target="_blank" class="social-button linkedin">
<i class="fab fa-linkedin"></i>LinkedIn
</a>
<a href="https://github.com/MetalShellImpaler" target="_blank" class="social-button github">
<i class="fab fa-github"></i>GitHub
</a>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css">
</div>
<br>
<img src="https://tryhackme-badges.s3.amazonaws.com/anaelrusso.png" alt="Your Image Badge" />
</section>
<!-- Terminal Section -->
<section class="terminal-section">
<div class="terminal">
<div class="terminal-header">
<div class="terminal-buttons">
<span class="close"></span>
<span class="minimize"></span>
<span class="maximize"></span>
</div>
<div class="terminal-title">guest@AnaelRusso-server</div>
</div>
<div class="terminal-body">
<div id="output"></div>
<div class="input-line">
<span class="prompt">guest@AnaelRusso-server:~$</span>
<input type="text" id="command-input" autofocus spellcheck="false">
</div>
</div>
</div>
</section>
</div>
<script src="scripts.js"></script>
</body>
</html>