diff --git a/index.html b/index.html index 6b4aaf8..4580623 100644 --- a/index.html +++ b/index.html @@ -52,6 +52,9 @@ @@ -116,19 +119,28 @@

Instagram @vompictures

-

Instagram @vompictures

+

Twitter @michivonah

- + +
+ +
+

GitHub @michivonah

+ +
@@ -158,6 +170,13 @@

As a final project for school, I programmed an Escape Room game. For this I used the programming languages HTML, CSS and JavaScript. If you want to know more about the development process of my game, click here . If you want to play it, click the button below. Good luck.

+ +
+ +

Michi's Escape Room

+

As a final project for school, I programmed an Escape Room game. For this I used the programming languages HTML, CSS and JavaScript. If you want to know more about the development process of my game, click here . If you want to play it, click the button below. Good luck.

+ +
@@ -165,6 +184,17 @@

Contact me

+

If you want contact me, fill out this form or send a mail to info@michivonah.ch.

+
+ + + + + + + + +
@@ -172,7 +202,7 @@

- Imprint & Copyright + Imprint & Copyright @@ -194,7 +224,7 @@
  • Animate on Scroll Libary - michalsnik.github.io/aos
  • Akar Icons - akaricons.com
  • Google Fonts - fonts.google.com
  • -
  • BGjar - bgjar.com/
  • +
  • BGjar - bgjar.com
  • Get Waves - getwaves.io
  • Blobmaker - blobmaker.app
  • @@ -232,6 +262,35 @@ else clearInterval(scroll); },time); } + + function toggleSection(sectionName, type){ + var section = document.getElementById(sectionName); + if(section.style.display == "block" || section.style.display == "flex"){ + section.style.display = "none"; + } + else{ + section.style.display = type; + } + } + + + function toggleClass(className){ + var elements = document.getElementsByClassName(className); + for(var i = 0; i < elements.length; i++){ + if(elements[i].style.display == "block"){ + elements[i].style.display = "none"; + } + else{ + elements[i].style.display = "block"; + } + } + } + + function closeNavbar(){ + document.getElementById("navbar-links").style.display = "none"; + document.getElementById("closeNavbarPlaceholder").style.display = "none"; + } +