diff options
Diffstat (limited to 'about.html')
| -rw-r--r-- | about.html | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/about.html b/about.html new file mode 100644 index 0000000..1fbc570 --- /dev/null +++ b/about.html @@ -0,0 +1,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> |
