diff options
author | Matthew Kosarek <mattkae@protonmail.com> | 2022-09-06 19:45:41 -0400 |
---|---|---|
committer | Matthew Kosarek <mattkae@protonmail.com> | 2022-09-06 19:45:41 -0400 |
commit | cbc3f9b5449d68ebe1bafa4af31a7369a7b15dbe (patch) | |
tree | d9c62fffe505651164111d73ffe62f4d7ab28e73 /index.html | |
parent | f3fe389d50f47466b10f8a80336b142a0cb69741 (diff) | |
parent | 8be7ee0d06d0aa6b8f7ae9ccf78a51b601b05e4f (diff) |
Merge branch 'master' of matthewkosarek.xyz:/srv/git/matthew_kosarek_xyz
Diffstat (limited to 'index.html')
-rw-r--r-- | index.html | 67 |
1 files changed, 32 insertions, 35 deletions
@@ -24,37 +24,32 @@ </ul> </nav> </header> - <section id='landing_page'> + <section id='image_container'> + <figure class='image_item'> + <img src='images/portrait-min.jpg' /> + <figcaption> + Me in front of my desktop, circa August 2021. + </figcaption> + </figure> + <figure class='image_item'> + <img src='images/dog_and_me-min.jpg' /> + <figcaption> + Hanging with my dog named Rizzy, circa May 2020. + </figcaption> + </figure> + <figure class='image_item'> + <img src='images/friends-min.jpg' /> + <figcaption> + Hanging with my friends, circa July 2019. + </figcaption> + </figure> + + </section> + <section> + <h2>About Me</h2> <p> - <div id='carousel'> - <div id='image_container'> - <figure class='carousel_image'> - <img src='images/portrait-min.jpg' /> - <figcaption> - Me in front of my desktop, circa August 2021. - </figcaption> - </figure> - <figure class='carousel_image'> - <img src='images/dog_and_me-min.jpg' /> - <figcaption> - Hanging with my dog named Rizzy, circa May 2020. - </figcaption> - </figure> - <figure class='carousel_image'> - <img src='images/friends-min.jpg' /> - <figcaption> - Hanging with my friends, circa July 2019. - </figcaption> - </figure> - </div> - <button id='carousel_left'>←</button> - <button id='carousel_right'>→</button> - </div> - </p> - - <p style='padding-left: 2rem; padding-right: 2rem;'> - Hello! My name is Matthew Kosarek. + My name is Matthew Kosarek. I am a computer programmer from northern New Jersey and I currently live and work in Montreal, Quebec. I keep my CV up to date on this website, and I also provide some links to some extracurriculars that I am up to. In my spare time, I build some graphics scenes in C++/OpenGL, compile them via <code>emcc</code> and post them here as "themes". @@ -69,13 +64,15 @@ </ul> </section> - <h2>Theme</h2> - <div id="theme_selector" class="hidden"> - <button id="theme_button_default">Default</button> - <button id="theme_button_autumn">Autumn</button> + <section> + <h2>Theme</h2> + <div id="theme_selector" class="hidden"> + <button id="theme_button_default">Default</button> + <button id="theme_button_autumn">Autumn</button> <button id="theme_button_winter">Winter</button> - <button id="theme_button_spring">Spring</button> - </div> + <button id="theme_button_spring">Spring</button> + </div> + </section> </body> <script src='/index.js'></script> |