From 82bb7a07c60db77baef661f1d859c38e7861b004 Mon Sep 17 00:00:00 2001 From: mihna123 Date: Sun, 24 May 2026 15:56:35 +0200 Subject: Initial commit --- .editorconfig | 8 ++++++++ favicon.ico | Bin 0 -> 7358 bytes fonts/LinLibertine.ttf | Bin 0 -> 767840 bytes index.html | 50 +++++++++++++++++++++++++++++++++++++++++++++++++ style.css | 19 +++++++++++++++++++ 5 files changed, 77 insertions(+) create mode 100644 .editorconfig create mode 100644 favicon.ico create mode 100644 fonts/LinLibertine.ttf create mode 100644 index.html create mode 100644 style.css 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 new file mode 100644 index 0000000..9b6eee4 Binary files /dev/null and b/favicon.ico differ diff --git a/fonts/LinLibertine.ttf b/fonts/LinLibertine.ttf new file mode 100644 index 0000000..591de3c Binary files /dev/null and b/fonts/LinLibertine.ttf differ diff --git a/index.html b/index.html new file mode 100644 index 0000000..9de70a1 --- /dev/null +++ b/index.html @@ -0,0 +1,50 @@ + + + + + + mihna123 [Mihailo Vojinovic] + + + +
+

Welcome to mihna123's web page

+

+ Hello, web traveler. Feel free to take a look around. Everything you see + is a property of Mihailo Vojinović, more commonly known as + mihna123 (nobody knows who that is). +

+

+ He works as a web dev freelancer, you can probably find him somewhere in + Novi Sad, Serbia. +

+ +

What am I currently working on?

+

+ I am working on a free to use invoice generator. 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 + the github repo. +

+ +

Contact Info:

+ +
+ + 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; +} -- cgit v1.3.1