diff options
Diffstat (limited to 'public')
-rw-r--r-- | public/about/index.html | 38 | ||||
-rw-r--r-- | public/contact/index.html | 38 | ||||
-rw-r--r-- | public/sitemap.xml | 6 |
3 files changed, 82 insertions, 0 deletions
diff --git a/public/about/index.html b/public/about/index.html new file mode 100644 index 0000000..eba042d --- /dev/null +++ b/public/about/index.html @@ -0,0 +1,38 @@ +<!DOCTYPE html> +<html lang="en"> +<head> + <meta charset="utf-8"> + <meta name="viewport" content="width=device-width, initial-scale=1.0"> + + <title> Luhamus </title> + + <link href="css/style.css" rel="stylesheet"/> + <link rel="icon" href="/img/favicon.ico"> +</head> + +<body> + <div class="headerImage"> + <div class="imgContainer"> + <h1><span>Luhamus</span></h1> + </div> + </div> + + <nav> + <a href="/">Home</a> + <a href="about">About</a> + <a href="https://git.luhamus.com">Git</a> + <a href="contact">Contact</a> + </nav> + <hr/> + + <section class="main"> + +<h3> Coming soon(er or later)!</h3> + + </section> + + <hr/> + <footer>© <i>footer 2022</i></footer> + +</body> +</html> diff --git a/public/contact/index.html b/public/contact/index.html new file mode 100644 index 0000000..07b3f19 --- /dev/null +++ b/public/contact/index.html @@ -0,0 +1,38 @@ +<!DOCTYPE html> +<html lang="en"> +<head> + <meta charset="utf-8"> + <meta name="viewport" content="width=device-width, initial-scale=1.0"> + + <title> Luhamus </title> + + <link href="css/style.css" rel="stylesheet"/> + <link rel="icon" href="/img/favicon.ico"> +</head> + +<body> + <div class="headerImage"> + <div class="imgContainer"> + <h1><span>Luhamus</span></h1> + </div> + </div> + + <nav> + <a href="/">Home</a> + <a href="about">About</a> + <a href="https://git.luhamus.com">Git</a> + <a href="contact">Contact</a> + </nav> + <hr/> + + <section class="main"> + +<h3> Email: rasmus.luha@gmail.com </h3> + + </section> + + <hr/> + <footer>© <i>footer 2022</i></footer> + +</body> +</html> diff --git a/public/sitemap.xml b/public/sitemap.xml index c920090..06ba0f1 100644 --- a/public/sitemap.xml +++ b/public/sitemap.xml @@ -3,4 +3,10 @@ <url> <loc>https://www.luhamus.com/</loc> </url> + <url> + <loc>https://www.luhamus.com/about/</loc> + </url> + <url> + <loc>https://www.luhamus.com/contact/</loc> + </url> </urlset> |