website
Diffstat (limited to 'index.html')
| -rw-r--r-- | index.html | 27 |
1 files changed, 25 insertions, 2 deletions
@@ -4,7 +4,30 @@ <meta charset="UTF-8" /> <meta http-equiv="X-UA-Compatible" content="IE=edge" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> - <title>Document</title> + <title>bendn</title> + <script + src="https://kit.fontawesome.com/be4f130556.js" + crossorigin="anonymous" + ></script> + <link rel="stylesheet" href="/style/index.css" /> + <link rel="stylesheet" href="/style/styles.css" /> </head> - <body></body> + <body> + <div id="wrapper"> + <h1 class="header">Hello!</h1> + <div id="inner_column"> + <div class="button_list"> + <a href="projects.html" class="button projects_button"> + <i class="fa-solid fa-folder"></i> projects + </a> + <a href="https://github.com/bend-n" class="button github_button"> + <i class="fa-brands fa-github"></i> github + </a> + <a href="https://bendn.itch.io" class="button itch_button"> + <i class="fa-brands fa-itch-io"></i> itch.io + </a> + </div> + </div> + </div> + </body> </html> |