-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcertificates.html
More file actions
53 lines (46 loc) · 1.84 KB
/
Copy pathcertificates.html
File metadata and controls
53 lines (46 loc) · 1.84 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>Certificates | My Portfolio</title>
<link rel="stylesheet" href="style.css" />
<link href="https://fonts.googleapis.com/css2?family=Space+Mono:wght@400;700&display=swap" rel="stylesheet">
</head>
<body>
<ul class="navbar">
<li><a class="navbar-item" href="index.html">Home</a></li>
<li><a class="navbar-item" href="projects.html">Projects</a></li>
<li><a class="navbar-item" href="about.html">About</a></li>
<li><a class="navbar-item active-page" href="certificates.html">Certificates</a></li>
<li><a class="navbar-item" href="contact.html">Contact</a></li>
</ul>
<div class="container">
<header>
<h1>My Certificates</h1>
<p class="tagline">Click on a certificate to view it</p>
</header>
<section>
<div class="project-grid">
<div class="project-card">
<h3>Heliverse AI Engineer</h3>
<p>Issued by Heliverse</p>
<a class="btn" href="certificates/HELI.pdf" target="_blank">View Certificate</a>
</div>
<div class="project-card">
<h3>Stanford ML Certificate</h3>
<p>Completed Stanford's "Advanced Learning Algorithms" course.</p>
<a class="btn" href="certificates/ALG.pdf" target="_blank">View Certificate</a>
</div>
<div class="project-card">
<h3>Completed Stanford's "Supervised Maching Learning: Regression & Classification" course</h3>
<p>Issued by Heliverse x GDG</p>
<a class="btn" href="certificates/SML.pdf" target="_blank">View Certificate</a>
</div>
</div>
</section>
</div>
<button class="mode-toggle" id="modeToggle">🌙</button>
<script src="script.js"></script>
</body>
</html>