-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcerts.html
More file actions
55 lines (52 loc) · 2.05 KB
/
certs.html
File metadata and controls
55 lines (52 loc) · 2.05 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width,initial-scale=1.0" />
<title>Certificates – SOC Analyst Portfolio</title>
<link href="https://fonts.googleapis.com/css2?family=Lora:wght@700&family=Inter:wght@400;600&display=swap" rel="stylesheet" />
<link rel="stylesheet" href="style.css" />
</head>
<body>
<header class="navbar">
<div class="nav-content">
<h1 class="logo">SOC Analyst</h1>
<nav>
<a href="index.html" class="nav-link">Home</a>
<a href="project.html" class="nav-link">Projects</a>
<a href="tools.html" class="nav-link">Tools</a>
<a href="certs.html" class="nav-link active">Certifications</a>
<a href="contact.html" class="nav-link">Contact</a>
</nav>
</div>
</header>
<main>
<section class="certs-section">
<h2>Certifications</h2>
<p class="cert-intro">Here are some of my completed cybersecurity certifications.</p>
<div class="certs-grid">
<div class="cert-card">
<img src="assets/images/certificate/Screenshot 2025-07-08 203303.png" alt="Cisco Certification">
<p>Cisco Cybersecurity Essentials</p>
</div>
<div class="cert-card">
<img src="assets/images/certificate/Screenshot 2025-07-08 203214.png" alt="Cisco Certification">
<p>Cisco Networking Basics</p>
</div>
<div class="cert-card">
<img src="assets/images/certificate/Screenshot 2025-05-01 121221.png" alt="Security Blue Team">
<p>Security Blue Team Network Analysis</p>
</div>
<div class="cert-card">
<img src="assets/images/certificate/Screenshot 2025-04-27 131646.png" alt="Security Blue Team">
<p>Security Blue Team Intro to Digital Forensic</p>
</div>
<!-- Add more cards as needed -->
</div>
</section>
</main>
<footer>
<p>© 2025 SOC Analyst | Built with determination and coffee</p>
</footer>
</body>
</html>