-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathachievements.html
130 lines (123 loc) · 6.39 KB
/
achievements.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
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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
<!DOCTYPE html>
<html>
<head>
<title>Deep Patel</title>
<!--Icon-->
<link rel="shortcut icon" type="image/x-icon" href="favicon.png">
<!--Fonts-->
<link rel="preconnect" href="https://rsms.me/">
<link rel="stylesheet" href="https://rsms.me/inter/inter.css">
<!--CSS-->
<link rel="stylesheet" href="styles/general.css">
<link rel="stylesheet" href="styles/header.css">
<link rel="stylesheet" href="styles/body.css">
<link rel="stylesheet" href="styles/achievements.css">
<!--JavaScript-->
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script src="script.js" defer></script>
<!--Open other webpages-->
<script>
function openHTML(destination) {
window.location.href = destination;
}
</script>
</head>
<body>
<!--HEADER-->
<div class="header">
<div class="left-section">
<img class="logo" src="images/logo2.png" onclick="window.location.href='index.html';">
</div>
<div class="right-section">
<div class="github-link">
<a href="https://github.com/DeepThePatel" target="_blank"><img src="images/github.png" title="GitHub" width="30px" height="30px"></a>
</div>
<div class="linkedin-link">
<a href="https://www.linkedin.com/in/deep-patel-a867a3170/" target="_blank"><img src="images/linkedin.png" title="LinkedIn" width="30px" height="30px"></a>
</div>
<div class="instagram-link">
<a href="https://www.instagram.com/dc4.deep/" target="_blank"><img src="images/instagram.png" title="Instagram" width="30px" height="30px"></a>
</div>
<div class="achievements">
<!--Medal icon created by Freepik - Flaticon https://www.flaticon.com/free-icons/medal -->
<img src="images/achievements.png" onclick="openHTML('achievements.html')" title="Achievements" width="30px" height="30px">
</div>
<div id="pdfContainer" class="resume-section">
<div class="resume-link" onclick="window.location.href='Resume_DeepPatel.pdf';">
<p>Resume</p>
</div>
</div>
</div>
</div>
<div class="header-background"></div>
<!--Modal-->
<div id="myModal" class="modal">
<span class="close">×</span>
<img class="modal-content" id="modalImg">
</div>
<div style="margin-top: 140px;">
<div class="achievement">
<!-- <h1 class="title" style="margin-bottom: 60px;">My Achievements</h1> -->
<h2 class="title">University Degrees</h2>
<div class="imgs-container">
<div class="img-item">
<img class="img img-modal" src="images/bscs.png" width="350px" height="446px">
<p id="download-bscs-degree" class="download-bscs-degree">View Certified PDF</p>
<script>
document.getElementById('download-bscs-degree').addEventListener('click', function() {
window.open('BSCS_Diploma.pdf', '_blank');
});
</script>
</div>
<div class="img-item">
<img class="img img-modal" src="images/ba.png" width="350px" height="446px">
<p id="download-ba-degree" class="download-ba-degree">View Certified PDF</p>
<script>
document.getElementById('download-ba-degree').addEventListener('click', function() {
window.open('BA_Diploma.pdf', '_blank');
});
</script>
</div>
</div>
</div>
<div class="achievement">
<h2 class="title">Microsoft Certified AZ-900 Azure Fundamentals Certification</h2>
<div class="imgs-container">
<div class="img-item">
<img class="img img-modal" src="images/microsoft-azure-fundamentals-certificate.png" width="611px" height="411px">
<a href="https://learn.microsoft.com/api/credentials/share/en-us/DeepPatel-4891/C37756672CDB0326?sharingId=44D8516F4A6078F8" target="_blank"><p class="download-pdf">Verify Certification</p></a>
</div>
</div>
</div>
<!-- <h2 class="title">National STEM Honor Society Internship Certificates</h2> -->
<div class="achievement">
<h2 class="title">Microsoft Certified C# Fundamentals Certification</h2>
<div class="imgs-container">
<div class="img-item">
<img class="img img-modal" src="images/csharpfundamentals.png" width="611px" height="411px">
<a href="https://www.freecodecamp.org/certification/d9asty/foundational-c-sharp-with-microsoft" target="_blank"><p class="download-pdf">Verify Certification</p></a>
</div>
</div>
</div>
<div class="achievement">
<h2 class="title">REST Engineer Certification</h2>
<div class="imgs-container">
<div class="img-item">
<img class="img img-modal" src="images/REST Engineer Certification.png" width="611px" height="411px">
<a href="https://credential.certifyme.online/verify/a9dc83c414748" target="_blank" rel="noopener noreferrer" title="https://credential.certifyme.online/verify/a9dc83c414748"><p class="download-pdf">Verify Certification</p></a>
</div>
</div>
</div>
</div>
<hr class="hr">
<div class="footer" style="font-size: 12px;">
<p style=>
<span style="color: rgb(100,255,218);">Email:</span> [email protected]
</p>
<p>
This website was published using Github Pages
</p>
</div>
</body>
</html>