diff options
author | mattkae <mattkae@protonmail.com> | 2021-11-24 21:08:53 -0500 |
---|---|---|
committer | mattkae <mattkae@protonmail.com> | 2021-11-24 21:08:53 -0500 |
commit | b6ecb0485ebbd1bd1512cc6a087c403ad67683f0 (patch) | |
tree | f73ae28c37e7589244385cf4d91cf4e8efb02a10 /index.html | |
parent | ac9c187740797c5f8105b052bc057d274edc4be1 (diff) |
(mkosarek) Fixed up a bunch of styling, add new links, and made it a light theme
Diffstat (limited to 'index.html')
-rw-r--r-- | index.html | 51 |
1 files changed, 29 insertions, 22 deletions
@@ -8,20 +8,20 @@ <link rel="shortcut icon" href="/favicon/favicon.ico" type="image/x-icon"> </head> <body> - <div id="theme_container"> - <canvas id="theme_canvas"></canvas> - </div> - - <header> - <h1>Matthew Kosarek</h1> - <nav> - <ul> - <li><a href='/'>🏡 Home</a></li> - <li><a href='/resume.html'>📘 CV</a></li> - <li style="display: none;"><a href='/posts.html'>📝 Posts</a></li> - </ul> - </nav> - </header> + <div id="theme_container"> + <canvas id="theme_canvas"></canvas> + </div> + + <header> + <h1>Matthew Kosarek</h1> + <nav> + <ul> + <li><a href='/'>🏡 Home</a></li> + <li><a href='/resume.html'>📘 CV</a></li> + <li style="display: none;"><a href='/posts.html'>📝 Posts</a></li> + </ul> + </nav> + </header> <section id='landing_page'> <p> @@ -52,17 +52,24 @@ </p> <p> - My name is Matthew Kosarek. I am a computer programmer currently living in Montreal. I keep my CV up to date on this website. - You can find a link to my Github <a href='https://github.com/mattkae'>here</a>. I am also building a website about physics simulation in video games which you can find <a href='https://physicsforgames.com/'>here</a>. + My name is Matthew Kosarek. I am a computer programmer from New Jersey and currently living in Montreal. I keep my CV up to date on this website, and also + provide some links to some other thinks that I am currently up to. I also have fun building themes in WASM/WebGL when I find the time. </p> - <br/> + </section> + <section> + <h2>Links</h2> + <ul> + <li><a href="https://github.com/mattkae">Github</a>: my personal github with most of my projects</li> + <li><a href="https://git.matthewkosarek.xyz">CGit</a>: my self-hosted git instance with a few of my projects</li> + <li><a href="https://physicsforgames.com">physicsforgames.com</a>: a project that I'm currently working on in my spare time where I explore the world of realtime physics</li> + </ul> </section> - <div id="theme_selector"> - <label>Theme:</label> - <button id="theme_button_default">Default</button> - <button id="theme_button_autumn">Autumn</button> - </div> + <div id="theme_selector"> + <label>Theme:</label> + <button id="theme_button_default">Default</button> + <button id="theme_button_autumn">Autumn</button> + </div> </body> <script src='/index.js'></script> |