All-Certificates / index.html
Hammad6271's picture
Update index.html
22c7eab verified
<!doctype html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width" />
<title>My Certificates</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: #f5f5f5;
margin: 0;
padding: 0;
}
.container {
max-width: 900px;
margin: 2rem auto;
padding: 1rem;
background: #fff;
border-radius: 8px;
box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
}
h1 {
text-align: center;
margin-bottom: 2rem;
}
.certificates {
display: flex;
flex-wrap: wrap;
gap: 1rem;
justify-content: center;
}
.certificate-card {
background: #fafafa;
border: 1px solid #ddd;
border-radius: 6px;
padding: 1rem;
width: 250px;
text-align: center;
}
.certificate-card img {
max-width: 100%;
height: auto;
border-radius: 4px;
cursor: pointer;
transition: transform 0.2s ease-in-out;
}
.certificate-card img:hover {
transform: scale(1.05);
}
.certificate-card p {
margin-top: 0.5rem;
font-size: 0.9rem;
color: #333;
}
</style>
</head>
<body>
<div class="container">
<h1>My Certificates</h1>
<div class="certificates">
<!-- Certificate Block Start -->
<div class="certificate-card">
<a href="https://cdn-uploads.huggingface.co/production/uploads/noauth/Q5wCbb0GGaLBfcMQeCteH.webp" target="_blank">
<img src="https://cdn-uploads.huggingface.co/production/uploads/noauth/Q5wCbb0GGaLBfcMQeCteH.webp" alt="Certificate" />
</a>
<p>Fundamentals of LLMs</p>
</div>
<!-- Certificate Block End -->
<!-- Add more certificate blocks below -->
</div>
</div>
</body>
</html>