-
Notifications
You must be signed in to change notification settings - Fork 0
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
Showing
2 changed files
with
21 additions
and
1 deletion.
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 |
---|---|---|
|
@@ -32,7 +32,18 @@ export function setupCV() { | |
</div> | ||
</div> | ||
<div class="row"> | ||
<img src="./images/pfp.jpg" alt="" id="cv-photo" /> | ||
<div class="column"> | ||
<h1>This is the cv</h1> | ||
<p>navn: Leah Yoimiya Johansen</p> | ||
<p>fødselsdato: 23.02.03</p> | ||
<p> | ||
jeg er en hyppig programerer og jeg elsker å snakke med folk. jeg har jobbet innen | ||
barn og ungdom men det er programering jeg brenner for | ||
</p> | ||
<p>nummer: 91527159</p> | ||
<p>email: [email protected]</p> | ||
</div> | ||
</div> | ||
</div> | ||
<div class="resizer"></div> | ||
|
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,9 @@ | ||
// Start button logic | ||
const startBtn = document.querySelector("#start-btn"); | ||
const startFull = document.querySelector("#start-full"); | ||
let menuIsOpen = true; | ||
|
||
startBtn.addEventListener("click", function () { | ||
menuIsOpen = !menuIsOpen; | ||
startFull.style.display = menuIsOpen ? "flex" : "none"; | ||
}); |