-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcertification.html
More file actions
160 lines (141 loc) · 4.87 KB
/
certification.html
File metadata and controls
160 lines (141 loc) · 4.87 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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Certifications | Samar Ahmad</title>
<style>
body {
font-family: 'Roboto', sans-serif;
margin: 0;
padding: 0;
background: url('back.png') no-repeat center center fixed; /* Set background image */
background-size: cover;
color: white; /* Text color set to white */
position: relative;
text-align: center;
}
/* Background overlay */
body::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.5); /* Semi-transparent black overlay */
z-index: -1;
}
header {
margin-top: 50px;
font-size: 3.5rem;
color: white; /* Title text color set to white */
font-weight: bold;
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
animation: fadeInDown 1s ease;
}
header p {
font-size: 1.5rem;
margin-top: 10px;
color: white; /* Subtitle text color set to white */
font-weight: bold;
}
.certifications-container {
padding: 50px 20px;
display: flex;
flex-direction: column;
align-items: center;
gap: 30px;
animation: fadeInUp 1s ease;
}
.certification-card {
background: rgba(0, 0, 0, 0.4); /* Transparent black background */
border-radius: 12px;
box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
width: 80%;
max-width: 800px;
padding: 25px;
text-align: left;
color: white; /* Text color inside cards set to white */
transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
position: relative;
overflow: hidden;
border: 2px solid transparent;
background-clip: padding-box;
}
.certification-card:hover {
transform: translateY(-15px);
box-shadow: 0 15px 25px rgba(0, 0, 0, 0.4);
background-color: rgba(0, 0, 0, 0.7); /* Darker background color on hover */
border-color: white;
cursor: pointer;
}
.certification-card h3 {
color: white; /* Title inside cards set to white */
font-size: 1.8rem;
margin-bottom: 10px;
font-weight: bold;
text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}
.certification-card p {
font-size: 1rem;
margin-bottom: 15px;
line-height: 1.6;
font-family: 'Arial', sans-serif;
}
.certification-card .institution {
font-weight: bold;
font-size: 1.1rem;
color: white; /* Institution text set to white */
}
.back-button {
display: inline-block;
margin-top: 40px;
padding: 15px 30px;
background-color: black; /* Background color of the button set to black */
color: white; /* Button text color set to white */
text-decoration: none;
border-radius: 5px;
font-size: 1.2rem;
transition: background-color 0.3s, transform 0.3s;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.back-button:hover {
background-color: #444; /* Darker background on hover */
transform: scale(1.1);
box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}
/* Animations */
@keyframes fadeInDown {
from { opacity: 0; transform: translateY(-30px); }
to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
from { opacity: 0; transform: translateY(30px); }
to { opacity: 1; transform: translateY(0); }
}
</style>
</head>
<body>
<header>
<h1>Certifications</h1>
<p>Here are some of the certifications I've earned to enhance my skills.</p>
</header>
<section class="certifications-container">
<!-- Certification 1 -->
<div class="certification-card">
<h3>NPTEL Python For Data Science</h3>
<p class="institution">IIT Madras</p>
<p>This certification helped me gain a foundational understanding of Python programming and its applications in data science. I learned how to work with Python libraries like Pandas and NumPy, perform data manipulation, and apply basic machine learning techniques to solve real-world problems.</p>
</div>
<!-- Certification 2 -->
<div class="certification-card">
<h3>NPTEL Body Language: Key to Professional Success</h3>
<p class="institution">IIT Guwahati</p>
<p>This course focused on the importance of non-verbal communication and its impact on professional growth. It covered techniques for building confidence, maintaining positive body language, and improving interpersonal skills in professional settings.</p>
</div>
</section>
<!-- Back Button -->
<a href="index.html" class="back-button">Back to Home</a>
</body>
</html>