Skip to content

Commit

Permalink
Added certifications
Browse files Browse the repository at this point in the history
  • Loading branch information
DedFishy committed Sep 22, 2023
1 parent da8552e commit 4ac79f5
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 0 deletions.
Binary file added certifications/htmlcss.pdf
Binary file not shown.
Binary file added certifications/java.pdf
Binary file not shown.
7 changes: 7 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,13 @@ <h3 class="language">Lua</h3>
<h3 class="language">Scratch</h3>
</div>

<div id="certifications">
<h2>certifications</h2>
<a class="certification" href="certifications/java.pdf">Java</a>
<a class="certification" href="certifications/htmlcss.pdf">HTML & CSS</a>

</div>

<div id="projects">
<h2>projects</h2>

Expand Down
14 changes: 14 additions & 0 deletions style.css
Original file line number Diff line number Diff line change
Expand Up @@ -149,3 +149,17 @@ h1 {
h2 {
font-size: 5vw;
}

.certification {
color: white;
background-color: black;
border-radius: 4px;
padding: 8px;
text-decoration: none;
font-weight: bold;
border: 2px solid white;
transition: 0.2s;
}
.certification:hover {
box-shadow: -4px 4px 0 black;
}

0 comments on commit 4ac79f5

Please sign in to comment.