summaryrefslogtreecommitdiff
path: root/about.html
blob: 1fbc570c8cdc279c9cd42a75d2046176fff1800f (plain)
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
35
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8" />
  <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  <title>About - Luhamus</title>
  <link rel="stylesheet" href="/style.css" />
</head>
<body>
  <div id="app">
    <header class="banner">
      <span>Luhamus</span>
    </header>

    <nav id="nav"></nav>

    <main>
      <h1>About</h1>
      <p>I will at some point replace this paragraph here with a bit more information about
      my background, interests work and so on.<br/>
      </p>

      <div class="contact-list">
          <a href="mailto:rasmus.luha@gmail.com" target="_blank"><img class="contactImg" src="/img/mail.png"></a>
          <a href="https://github.com/luhamus" target="_blank"><img class="contactImg" src="/img/github.png"></a>
          <a href="/cv.pdf" target="_blank"><img class="contactImg" src="/img/cv.png"></a>
      </div>
    </main>
  </div>

  <footer id="footer"></footer>
  <script src="/script.js"></script>

</body>
</html>