-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
108 lines (101 loc) · 5.2 KB
/
index.html
File metadata and controls
108 lines (101 loc) · 5.2 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Ruby Hlabangani's Cybersecurity Portfolio</title>
<link rel="stylesheet" href="styles.css"> <!-- Link to your CSS file -->
</head>
<body>
<!-- Hero Section -->
<header id="hero">
<h1>Ruby Hlabangani</h1>
<h2>Junior IT Security Analyst</h2>
<p>Proactive cybersecurity professional with a passion for protecting digital environments.</p>
<a href="#portfolio" class="cta">Explore My Work</a>
</header>
<!-- About Me Section -->
<section id="about">
<h2>About Me</h2>
<p>I'm Ruby Hlabangani, a proactive and highly motivated cybersecurity professional with a strong academic background and practical project-based experience. Skilled in security configurations, vulnerability assessment, and cloud security, I am currently pursuing the CompTIA Security+ certification to further enhance my knowledge and skills. I thrive in cooperative environments and bring a structured, self-motivated approach to achieving goals.</p>
</section>
<!-- Portfolio Section -->
<section id="portfolio">
<h2>Portfolio</h2>
<div class="project">
<h3>Caesar Cipher</h3>
<p>Developed a Python program that encrypts and decrypts text using the Caesar Cipher algorithm. This project demonstrates my ability to apply encryption techniques in cybersecurity.</p>
</div>
<div class="project">
<h3>Password Complexity Checker</h3>
<p>This tool assesses the strength of a password based on length, character variety, and other criteria. It provides feedback to users to help them create stronger passwords.</p>
</div>
<div class="project">
<h3>Vulnerability Management</h3>
<p>Collaborated with a team on vulnerability management, using Burp Suite for vulnerability scanning and mitigation.</p>
</div>
<div class="project">
<h3>Security Tools</h3>
<p>Developed various security tools, including encryption programs and password strength checkers, showcasing my programming skills in Python, Bash, and PowerShell.</p>
</div>
</section>
<!-- Experience Section -->
<section id="experience">
<h2>Experience</h2>
<div class="job">
<h3>Cybersecurity Intern at Prodigy InfoTech (July 2024 - August 2024)</h3>
<p>Worked on vulnerability management and developed Python programs for encryption, decryption, and password strength assessment.</p>
</div>
<div class="job">
<h3>Director at Pink Tail Farms PTY LTD (June 2021 - April 2023)</h3>
<p>Led operations and implemented strategic plans that resulted in significant growth.</p>
</div>
<div class="job">
<h3>Sales Agent at Bayport Financial Services (Jan 2019 - Nov 2021)</h3>
<p>Achieved significant sales targets and customer satisfaction ratings.</p>
</div>
</section>
<!-- Skills Section -->
<section id="skills">
<h2>Skills</h2>
<ul>
<li>Vulnerability Management: Proficiency with tools like Burp Suite</li>
<li>Cloud Security: Experience with AWS and Google Cloud, focusing on security and defense-in-depth techniques</li>
<li>Programming: Python, Bash, PowerShell for security automation and analysis</li>
<li>Security Protocols: Knowledge of IT security protocols and scoring systems like CVSS/CMSS</li>
</ul>
</section>
<!-- Education & Certifications Section -->
<section id="education-certifications">
<h2>Education & Certifications</h2>
<div class="education">
<h3>Education</h3>
<p>Okavango International School - IGCSE (Jan 2015 – Nov 2016)</p>
</div>
<div class="certifications">
<h3>Certifications</h3>
<ul>
<li>CompTIA Security+ (Expected October 2024)</li>
<li>AWS Cloud Solutions Architect Professional (Ongoing)</li>
<li>ISC2 Cybersecurity Certification (July 2024)</li>
<li>Google Cybersecurity Professional Certification (June 2024)</li>
</ul>
</div>
</section>
<!-- Contact Section -->
<section id="contact">
<h2>Contact Me</h2>
<form action="mailto:rubyhlabangani@gmail.com" method="POST" enctype="text/plain">
<input type="text" name="name" placeholder="Your Name" required>
<input type="email" name="email" placeholder="Your Email" required>
<textarea name="message" placeholder="Your Message" required></textarea>
<button type="submit">Send</button>
</form>
<p>Or connect with me on <a href="https://linkedin.com/in/ruby-hlabangani-9a8b791b9">LinkedIn</a> or check out my work on <a href="https://github.com/Rubywiz">GitHub</a>.</p>
</section>
<!-- Footer -->
<footer>
<p>© 2024 Ruby Hlabangani. All rights reserved.</p>
</footer>
</body>
</html>