diff options
| -rw-r--r-- | .editorconfig | 8 | ||||
| -rw-r--r-- | favicon.ico | bin | 0 -> 7358 bytes | |||
| -rw-r--r-- | fonts/LinLibertine.ttf | bin | 0 -> 767840 bytes | |||
| -rw-r--r-- | index.html | 50 | ||||
| -rw-r--r-- | style.css | 19 |
5 files changed, 77 insertions, 0 deletions
diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..18616d3 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,8 @@ +root = true + +[*] +end_of_line = lf +insert_final_newline = true +indent_style = space +indent_size = 2 +charset = utf-8 diff --git a/favicon.ico b/favicon.ico Binary files differnew file mode 100644 index 0000000..9b6eee4 --- /dev/null +++ b/favicon.ico diff --git a/fonts/LinLibertine.ttf b/fonts/LinLibertine.ttf Binary files differnew file mode 100644 index 0000000..591de3c --- /dev/null +++ b/fonts/LinLibertine.ttf diff --git a/index.html b/index.html new file mode 100644 index 0000000..9de70a1 --- /dev/null +++ b/index.html @@ -0,0 +1,50 @@ +<!doctype html> +<html lang="en"> + <head> + <meta charset="UTF-8" /> + <meta name="viewport" content="width=device-width, initial-scale=1" /> + <title>mihna123 [Mihailo Vojinovic]</title> + <link href="style.css" rel="stylesheet" /> + </head> + <body> + <div id="container"> + <h1>Welcome to mihna123's web page</h1> + <p> + Hello, web traveler. Feel free to take a look around. Everything you see + is a property of <b>Mihailo Vojinović</b>, more commonly known as + mihna123 (nobody knows who that is). + </p> + <p> + He works as a web dev freelancer, you can probably find him somewhere in + <b>Novi Sad, Serbia</b>. + </p> + + <h2>What am I currently working on?</h2> + <p> + I am working on a free to use <b>invoice generator</b>. Very usefull for + freelancers and smaller firms to generate invoices quickly. If you want + to get involved feel free to do so by creating an issue or a PR on + <a target="_blank" href="https://github.com/mihna123/invoice" + >the github repo.</a + > + </p> + + <h2>Contact Info:</h2> + <ul> + <li> + <a href="mailto:mihailonvojinovic@gmail.com"> + mihailonvojinovic@gmail.com + </a> + </li> + <li> + <a target="_blank" href="https://github.com/mihna123">My Github</a> + </li> + <li> + <a target="_blank" href="https://linkedin.com/in/mihailo-vojinovic/"> + My Linkedin + </a> + </li> + </ul> + </div> + </body> +</html> diff --git a/style.css b/style.css new file mode 100644 index 0000000..2bf3b77 --- /dev/null +++ b/style.css @@ -0,0 +1,19 @@ +@font-face { + font-family: 'LinLibertine'; + src: url('fonts/LinLibertine.ttf') format('truetype'); +} + +body { + display: flex; + justify-content: center; + background-color: lightgray; + font-family: 'LinLibertine', serif; + font-size: 1.2rem; + margin: 0; +} + +#container { + max-width: 800px; + background-color: white; + padding: 10px; +} |
