-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
b25d189
commit dd8cbef
Showing
11 changed files
with
165 additions
and
12 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,8 @@ | ||
node_modules | ||
certification/* | ||
src/certification/* | ||
|
||
.DS_Store | ||
config.json | ||
config.json | ||
|
||
*.swp | ||
*.prod |
Binary file not shown.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file.
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,140 @@ | ||
<html> | ||
<style> | ||
html, body { | ||
margin: 0; | ||
padding: 0; | ||
box-sizing: border-box; | ||
} | ||
@font-face { | ||
font-family: "BebasNeue"; | ||
src: url(fonts/BebasNeue-Bold.ttf) format('truetype'); | ||
} | ||
@font-face { | ||
font-family: "Dhanikans"; | ||
src: url(fonts/Dhanikans_Signature_2_dafont.ttf) format("truetype"); | ||
} | ||
.container { | ||
border: 24px solid white; | ||
border-radius: 40px; | ||
height: 546px; | ||
position: relative; | ||
background-image: url('img/bg-cpp-new.jpg'); | ||
background-size: cover; | ||
background-position: center; | ||
background-repeat: no-repeat; | ||
} | ||
.cb-image { | ||
width: 170px; | ||
height: 58px; | ||
top: 34px; | ||
background-image: url('img/cblogo.png'); | ||
background-size: contain; | ||
background-repeat: no-repeat; | ||
} | ||
.text { | ||
color: white; | ||
position: absolute; | ||
left: 32px; | ||
font-family: Avenir; | ||
} | ||
.completion { | ||
position: absolute; | ||
top: 127px; | ||
font-family: BebasNeue; | ||
font-size: 60px; | ||
color: white; | ||
} | ||
.completion-sub { | ||
top: 184px; | ||
font-size: 19px; | ||
font-family: Avenir; | ||
} | ||
.name { | ||
top: 243px; | ||
font-family: Dhanikans; | ||
font-size: 41px; | ||
} | ||
.course-text { | ||
font-size: 20px; | ||
width: 462px; | ||
top: 333px | ||
} | ||
.batch { | ||
top: 424px; | ||
font-size: 16px; | ||
} | ||
.signature { | ||
top: 413px; | ||
left: 317px; | ||
font-size: 14px; | ||
} | ||
.signature > img { | ||
width: 88px; | ||
height: 33px; | ||
} | ||
.verify { | ||
font-size: 10px; | ||
bottom: 22px; | ||
} | ||
.course-logo { | ||
width: 149px; | ||
height: 172px; | ||
top: 62px; | ||
left: 591px; | ||
} | ||
</style> | ||
<body> | ||
<div class="container"> | ||
<div class="cb-image text"></div> | ||
<div class="completion text">CERTIFICATE OF COMPLETION</div> | ||
<div class="completion-sub text">This certificate is proudly presented to</div> | ||
<div class="name text">Mohit Yadav</div> | ||
<div class="course-text text">for successfully completing the C++ Online Course | ||
by Coding Blocks | ||
</div> | ||
|
||
<img src="img/certi-cpp.png" alt="" class="course-logo text"> | ||
|
||
<div class="batch text"> | ||
<div class="duration">15 May 2018 - 15 Aug 2018</div> | ||
<hr> | ||
<div>Batch</div> | ||
</div> | ||
|
||
<div class="batch text"> | ||
<div class="duration">15 May 2018 - 15 Aug 2018</div> | ||
<hr> | ||
<div>Batch</div> | ||
</div> | ||
|
||
<div class="signature text"> | ||
<img src="img/signmmgupta.png" alt=""> | ||
<hr> | ||
<div> | ||
Manmohan Gupta <br> | ||
(Founder, Coding Blocks) | ||
</div> | ||
</div> | ||
|
||
<div class="verify text"> | ||
The certificate can be verified at online.codingblocks.com/verify/c++001 | ||
</div> | ||
</div> | ||
|
||
</body> | ||
|
||
</html> |
This file was deleted.
Oops, something went wrong.