49 lines
919 B
HTML
49 lines
919 B
HTML
<!DOCTYPE html>
|
||
<html>
|
||
<head>
|
||
<style>
|
||
body {
|
||
font-family: Arial;
|
||
border: 3px solid teal;
|
||
padding: 40px;
|
||
}
|
||
.center { text-align: center; }
|
||
.footer {
|
||
display: flex;
|
||
justify-content: space-between;
|
||
margin-top: 60px;
|
||
}
|
||
</style>
|
||
</head>
|
||
<body>
|
||
|
||
<div class="center">
|
||
<img src="../assets/logo.png" width="120"><br><br>
|
||
<h1>CERTIFICATE OF PARTICIPATION</h1>
|
||
</div>
|
||
|
||
<p class="center">This is to certify that</p>
|
||
|
||
<h2 class="center">STUDENT NAME</h2>
|
||
|
||
<p class="center">
|
||
has successfully completed the coding challenge track
|
||
<b>Python Foundations</b><br>
|
||
conducted by <b>RS Learning Lab</b>
|
||
</p>
|
||
|
||
<div class="footer">
|
||
<div>
|
||
<img src="../assets/signature.png" width="150"><br>
|
||
<b>Gokula Krishnan</b><br>
|
||
Founder – RS Learning Lab
|
||
</div>
|
||
<div>
|
||
Verified Learning Certificate<br>
|
||
www.rslearninglab.in
|
||
</div>
|
||
</div>
|
||
|
||
</body>
|
||
</html>
|