--- /dev/null
+<!DOCTYPE html>
+<html>
+ <head>
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
+ <meta charset="UTF-8">
+ <title>About</title>
+ <link rel="stylesheet" href="/styles/main_style.css">
+ <link rel="icon" type="image/svg+xml" href="/images/favicon.svg">
+ </head>
+ <body>
+ <iframe src="navigation.html" title="Navigation bar"></iframe>
+ <h1 id="firsth">
+ About
+ </h1>
+ <p>
+ This site was created because I wanted to share my projects with people
+ who do not particularly like CLI git. I could have used GitHub but I
+ don't like Microsoft all that much and thought that creating this site
+ may be an experience.
+ </p>
+ </body>
+</html>
--- /dev/null
+<!DOCTYPE html>
+<html>
+ <head>
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
+ <meta charset="UTF-8">
+ <title>Error 404</title>
+ <link rel="stylesheet" href="/styles/main_style.css">
+ <link rel="icon" type="image/svg+xml" href="/images/favicon.svg">
+ </head>
+ <body>
+ <iframe src="/navigation.html" title="Navigation bar"></iframe>
+ <h1 id="firsth">
+ This page does not exist
+ </h1>
+ <p>
+ This page does not exist. Check that the web site address is spelled correctly.
+ </p>
+ <p>
+ You can also navigate using the navigation bar above or redirect to <a href="index.html">Home</a> page.
+ </p>
+ </body>
+</html>
--- /dev/null
+<svg xmlns="http://www.w3.org/2000/svg" width="5" height="6">
+ <polygon points="1,1 2,1 2,4 1,5" style="fill:#5CDC1C;" />
+ <polygon points="2,4 4,4 4,5 1,5" style="fill:#3268CD;" />
+</svg>
--- /dev/null
+<!DOCTYPE html>
+<html>
+ <head>
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
+ <meta charset="UTF-8">
+ <title>Home</title>
+ <link rel="stylesheet" href="/styles/main_style.css">
+ <link rel="icon" type="image/svg+xml" href="/images/favicon.svg">
+ </head>
+ <body>
+ <iframe src="navigation.html" title="Navigation bar"></iframe>
+ <h1 id="firsth">Welcome</h1>
+ <p>
+ Hello, I am Lukáš and I welcome you to this site which hosts my
+ projects as well as some information about myself.
+ </p>
+ <p><strong>This site is work in progress!</strong></p>
+ </body>
+</html>
--- /dev/null
+<!DOCTYPE html>
+<html>
+ <head>
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
+ <meta charset="UTF-8">
+ <title>Navigation bar</title>
+ <style>
+ nav a {
+ display: inline-block;
+ color: white;
+ text-align: center;
+ padding-left: 5%;
+ padding-right: 5%;
+ padding-top: 10px;
+ padding-bottom: 10px;
+ text-decoration: none;
+ }
+ nav a:link {
+ color: white;
+ text-decoration: none;
+ }
+ nav a:hover {
+ background-color: #202020;
+ text-decoration: none;
+ }
+ nav a:visited {
+ color: white;
+ text-decoration: none;
+ }
+ nav a:active {
+ color: white;
+ text-decoration: none;
+ }
+ body {
+ margin: 0px;
+ }
+ </style>
+ <link rel="stylesheet" href="/styles/main_style.css">
+ <link rel="icon" type="image/svg+xml" href="/images/favicon.svg">
+ </head>
+ <body>
+ <img src="/images/favicon.svg" alt="Logo" style="height:39px;float:left">
+ <nav>
+ <a href="index.html" target="_parent" title="Home page">Home</a>
+ <a href="projects.html" target="_parent" title="Page with my projects">Projects</a>
+ <a href="about.html" target="_parent" title="About this page">About</a>
+ </nav>
+ </body>
--- /dev/null
+<!DOCTYPE html>
+<html>
+ <head>
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
+ <meta charset="UTF-8">
+ <title>Placeholder</title>
+ <link rel="stylesheet" href="/styles/main_style.css">
+ <link rel="icon" type="image/svg+xml" href="/images/favicon.svg">
+ </head>
+ <body>
+ <iframe src="navigation.html" title="Navigation bar"></iframe>
+ <h1 id="firsth">
+ Placeholder
+ </h1>
+ <p>
+ This is a placeholder page.
+ </p>
+ </body>
+</html>
+
--- /dev/null
+<!DOCTYPE html>
+<html>
+ <head>
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
+ <meta charset="UTF-8">
+ <title>Projects</title>
+ <link rel="stylesheet" href="/styles/main_style.css">
+ <link rel="icon" type="image/svg+xml" href="/images/favicon.svg">
+ </head>
+ <body>
+ <iframe src="navigation.html" title="Navigation bar"></iframe>
+ <h1 id="firsth">
+ Projects
+ </h1>
+ <p>
+ This page will be an access point to my projects
+ for my convenience and for anyone to see.
+ </p>
+ <p><strong>WORK IN PROGRESS</strong></p>
+ </body>
+</html>
--- /dev/null
+body {
+ background-color: #383838;
+ color: #FFFFFF;
+}
+p {
+ max-width: 1000px;
+}
+iframe {
+ border: none;
+ height: 45px;
+ width: 100%;
+}
+a:link {
+ color: #5CDC1C;
+ background-color: transparent;
+ text-decoration: underline;
+}
+a:hover {
+ color: #5CDC1C;
+ background-color: transparent;
+ text-decoration: underline;
+}
+a:visited {
+ color: #3268CD;
+ background-color: transparent;
+ text-decoration: underline;
+}
+a:active {
+ color: yellow;
+ background-color: transparent;
+ text-decoration: underline;
+}
+#firsth {
+ margin-top: 5px;
+}