-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcertificate.html
51 lines (51 loc) · 2.14 KB
/
certificate.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Certificates</title>
<link rel="stylesheet" href="portfolio.css" />
<link rel="icon" type="image-x/icon" href="4.png" />
<link
href="https://unpkg.com/[email protected]/css/boxicons.min.css"
rel="stylesheet"
/>
<script src="https://cdn.jsdelivr.net/npm/[email protected]"></script>
</head>
<body>
<header class="header">
<a href="#home" class="logo"><span>Ansh</span> Kumar</a>
<nav class="navbar">
<a href="index.html" style="--i: 1">Home</a>
<a href="about.html" style="--i: 2">About</a>
<a href="skills.html" style="--i: 3">Skills</a>
<a href="certificate.html" style="--i:4">Certificates</a>
<a href="contact.html" style="--i: 5">Contact</a>
</nav>
</header>
<h1 class="cert">My <span>Certificates</span></h1>
<div class="container">
<div class="photo-card">
<img src="7.png" alt="Photo 1" >
<div class="photo-heading">Tech Tussle Participation</div>
<div class="photo-details">
<p>Thrilled to have earned my Tech Tussle Participation credential from Club Google! Looking forward to applying this knowledge</p>
</div>
</div>
<div class="photo-card">
<img src="5.png" alt="Photo 2">
<div class="photo-heading">Effective Time Management MOOC</div>
<div class="photo-details">
<p>I recently completed the "Effective Time Management" MOOC, which has equipped me with strategies to optimize my time and productivity.</p>
</div>
</div>
<div class="photo-card">
<img src="6.jpg" alt="Photo 3">
<div class="photo-heading">Hack-a-Throne 1.0 AIESEC</div>
<div class="photo-details">
<p>My first hackathon qualifying certificate was a moment of pride. It validated my technical skills, creativity, and ability to collaborate under pressure.</p>
</div>
</div>
</div>
</body>
</html>