My Website
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Fix

willmexe ce838290 4c469021

+72 -31
+39
altindex.html
··· 1 + <html lang="en"> 2 + <head> 3 + <link rel="stylesheet" href="styles.css"> 4 + 5 + <meta charset="UTF-8"> 6 + <meta name="viewport" content="width=device-width, initial-scale=1"> 7 + <title>My Website</title> 8 + </head> 9 + <body> 10 + <div id="headers"> 11 + <div id="main"> 12 + <a class="headerselected" href="index.html"> 13 + Home 14 + </a> 15 + <span> 16 + <a class="header" href="projects.html"> Projects </a> 17 + </span> 18 + <span> 19 + <a class="header" href="blog.html"> Blog </a> 20 + </span> 21 + </div> 22 + </div> 23 + 24 + <div id="main"> 25 + <div> 26 + <div class="subheader"> 27 + About Me 28 + </div> 29 + <div class="imagewithtext"> 30 + <img style="width: 256px" src="logo.png"> 31 + </div> 32 + <button class="content" onclick=""> 33 + I make stuff for fun mostly in python. Currently my main project is <a href="projects.html #CherryEngine"><strong>Cherry Engine</strong></a> 34 + a 2d game engine being developed in <a href="https://www.python.org"><strong>Python</strong></a> using the <a href="https://www.pygame.org"><strong>Pygame</strong></a> library. 35 + </button> 36 + </div> 37 + </div> 38 + </body> 39 + </html>
+10 -31
index.html
··· 1 1 <html lang="en"> 2 2 <head> 3 - <link rel="stylesheet" href="styles.css"> 4 - 5 - <meta charset="UTF-8"> 6 - <meta name="viewport" content="width=device-width, initial-scale=1"> 7 - <title>My Website</title> 3 + <link rel="stylesheet" href="./style.css"> 4 + <meta http-equiv="refresh" content="0; url=https://willmexe.github.io/carlssonswordle/" /> 5 + <title>Willmexe</title> 8 6 </head> 9 7 <body> 10 - <div id="headers"> 11 - <div id="main"> 12 - <a class="headerselected" href="index.html"> 13 - Home 14 - </a> 15 - <span> 16 - <a class="header" href="projects.html"> Projects </a> 17 - </span> 18 - <span> 19 - <a class="header" href="blog.html"> Blog </a> 20 - </span> 21 - </div> 8 + <div id="button" class="carlssonswordle"> 9 + Klicka här för Carlssons Wordle 22 10 </div> 23 11 24 - <div id="main"> 25 - <div> 26 - <div class="subheader"> 27 - About Me 28 - </div> 29 - <div class="imagewithtext"> 30 - <img style="width: 256px" src="logo.png"> 31 - </div> 32 - <div class="content"> 33 - I make stuff for fun mostly in python. Currently my main project is <a href="projects.html #CherryEngine"><strong>Cherry Engine</strong></a> 34 - a 2d game engine being developed in <a href="https://www.python.org"><strong>Python</strong></a> using the <a href="https://www.pygame.org"><strong>Pygame</strong></a> library. 35 - </div> 36 - </div> 37 - </div> 12 + <script type="text/javascript"> 13 + document.getElementById("button").onclick = function () { 14 + location.href = "https://willmexe.github.io/carlssonswordle/"; 15 + }; 16 + </script> 38 17 </body> 39 18 </html>
+23
style.css
··· 1 + @import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap'); 2 + 3 + body { 4 + display: grid; 5 + width: 100%; 6 + height: 100%; 7 + place-items: center; 8 + align-items: center; 9 + } 10 + 11 + .carlssonswordle { 12 + width: 400px; 13 + height: 150px; 14 + background-color: bisque; 15 + border-radius: 5px; 16 + display: grid; 17 + place-items: center; 18 + align-items: center; 19 + font-family: 'Roboto', sans-serif; 20 + font-size: 40px; 21 + filter: drop-shadow(4px 4px 3px rgba(43, 43, 43, 50)); 22 + padding-left: 20px; 23 + }