Skip to content

Commit

Permalink
empty page
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelkolesidis committed Jan 16, 2024
1 parent 00240c4 commit 4edb869
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/Header.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,14 @@ export default function header() {
// Name
const name = document.createElement("h1");
name.setAttribute("id", "name");
name.innerHTML = /* html */ `MICHAEL K<span id="title-letter">O</span>LESIDIS`;
name.innerHTML = /* html */ `Michael Kolesidis`;
header.appendChild(name);

// Top gap
const topGap = document.createElement("div");
topGap.setAttribute("id", "top-gap");
topGap.innerHTML = `.`;
header.appendChild(topGap);
// header.appendChild(topGap);

/* Styling */
topGap.style.color = `white`;
Expand Down

0 comments on commit 4edb869

Please sign in to comment.