diff --git a/index.html b/index.html index f0afd87..ca04f40 100644 --- a/index.html +++ b/index.html @@ -96,20 +96,20 @@

Socialmedia

- + - + - + - +
-
+

Instagram @michivonah

  • 100+ Followers
  • @@ -118,7 +118,7 @@
-
+

Instagram @vompictures

  • 15+ Followers
  • @@ -127,7 +127,7 @@
-
+

Twitter @michivonah

  • 10+ Followers
  • @@ -136,7 +136,7 @@
-
+

GitHub @michivonah

  • 20+ public repos
  • @@ -152,32 +152,28 @@

    Projects

    -
    - -

    N3WS App

    -

    a simple rss feed reader

    - -
    +
    +
    + +

    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.

    + +
    -
    - -

    Password Generator

    -

    I‘ve programmed a simple and minimalistic password generator. You can choose from different password types and copy the password afterwards.

    - +
    + +

    N3WS App

    +

    a simple rss feed reader

    + +
    - -
    - -

    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.

    - -
    - -
    @@ -232,6 +228,8 @@

All information without guarantee.

+ +

© 2022

@@ -248,6 +246,7 @@ //document.getElementById('scroll-top').style.display = "none"; // Instagram: https://www.instagram.com/vompictures/?__a=1 age(16, 09, 2005); + toggleSocialmedia(); }); document.getElementById('scroll-top').addEventListener("click", function(){ @@ -294,6 +293,17 @@ document.getElementById("closeNavbarPlaceholder").style.display = "none"; } + function toggleSocialmedia(){ + var tabs = document.getElementsByClassName('socialTab'); + for(var i = 0; i < tabs.length; i++){ + var currentTabId = tabs[i].id; + var currentRadioButton = currentTabId.replace("social", "sm");; + var state = document.getElementById(currentRadioButton).checked; + if(state == true) document.getElementById(tabs[i].id).style.display = "block"; + else document.getElementById(tabs[i].id).style.display = "none"; + } + } + function age(birthday, birthmonth, birthyear){ var birthmonth = birthmonth - 1; var ageText = document.getElementById('age');