From f6853bcf17aaf13d1951855ae50cccd3663946b0 Mon Sep 17 00:00:00 2001 From: Pablo Martin Date: Mon, 13 Jan 2025 17:00:39 +0100 Subject: [PATCH] work --- README.md | 2 +- public/index.html | 26 ++++++++++++++++++++++++++ public/styles.css | 7 +++++++ 3 files changed, 34 insertions(+), 1 deletion(-) create mode 100644 public/index.html create mode 100644 public/styles.css diff --git a/README.md b/README.md index 0ff351b..b448f02 100644 --- a/README.md +++ b/README.md @@ -8,4 +8,4 @@ The `index.html` is ready in the `public` folder. ## How to deploy -Somehow get the `index.html` behind a webserver manually and sort out DNS. +Somehow get the `public` folder behind a webserver manually and sort out DNS. diff --git a/public/index.html b/public/index.html new file mode 100644 index 0000000..f78d9d6 --- /dev/null +++ b/public/index.html @@ -0,0 +1,26 @@ + + + + Pablo here + + + + + +
+

+ Hi, Pablo here +

+

+ Welcome to my website. Here I discuss thoughts and ideas. This is mostly professional. +

+
+

About me

+

A few facts you might care about:

+ +
+ + \ No newline at end of file diff --git a/public/styles.css b/public/styles.css new file mode 100644 index 0000000..7409aee --- /dev/null +++ b/public/styles.css @@ -0,0 +1,7 @@ +main { + width: 80%; + min-width: 300px; + text-align: center; + margin: 0 auto; + font-family: sans-serif; +} \ No newline at end of file