Created
September 27, 2022 04:58
-
-
Save samtarmizi/38e16ccae659df0563b557ca14b8d924 to your computer and use it in GitHub Desktop.
HTML Certificate Template
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<html> | |
<head> | |
<style type='text/css'> | |
body, html { | |
margin: 0; | |
padding: 0; | |
} | |
body { | |
color: black; | |
display: table; | |
font-family: Georgia, serif; | |
font-size: 24px; | |
text-align: center; | |
} | |
.container { | |
border: 20px solid rgb(216, 177, 0); | |
width: 1010px; | |
height: 563px; | |
display: table-cell; | |
vertical-align: middle; | |
} | |
.logo { | |
color: rgb(205, 31, 0); | |
} | |
.marquee { | |
color: tan; | |
font-size: 48px; | |
margin: 20px; | |
} | |
.assignment { | |
margin: 20px; | |
} | |
.person { | |
border-bottom: 2px solid black; | |
font-size: 32px; | |
font-style: italic; | |
margin: 20px auto; | |
width: 400px; | |
} | |
.reason { | |
margin: 20px; | |
} | |
</style> | |
</head> | |
<body> | |
<div class="container"> | |
<div class="logo"> | |
TARSOFT SDN BHD | |
</div> | |
<div class="marquee"> | |
Certificate of Completion | |
</div> | |
<div class="assignment"> | |
This certificate is presented to | |
</div> | |
<div class="person"> | |
Joe Nathan | |
</div> | |
<div class="reason"> | |
For deftly defying the laws of gravity<br/> | |
and flying high | |
</div> | |
</div> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment