website
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="UTF-8" />
    <meta http-equiv="X-UA-Compatible" content="IE=edge" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <link rel="icon" type="image/png" href="/favicon.png" />
    <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>
    <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>