This commit is contained in:
Pablo Martin 2025-01-13 17:00:39 +01:00
parent 698b1c9419
commit f6853bcf17
3 changed files with 34 additions and 1 deletions

View file

@ -8,4 +8,4 @@ The `index.html` is ready in the `public` folder.
## How to deploy ## 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.

26
public/index.html Normal file
View file

@ -0,0 +1,26 @@
<!DOCTYPE HTML>
<html>
<head>
<title>Pablo here</title>
<meta charset="utf-8">
<meta viewport="width=device-width, initial-scale=1">
<link rel="stylesheet" href="styles.css">
</head>
<body>
<main>
<h1>
Hi, Pablo here
</h1>
<p>
Welcome to my website. Here I discuss thoughts and ideas. This is mostly professional.
</p>
<hr>
<h2>About me</h2>
<p>A few facts you might care about:</p>
<ul>
<li>I'm based in Barcelona, although I'm happy working for anyone anywhere (as long as we can find a time to meet).</li>
<li>My career has focused in Data teams and positions, playing roles such as Data Lead, Data Engineer.</li>
</ul>
</main>
</body>
</html>

7
public/styles.css Normal file
View file

@ -0,0 +1,7 @@
main {
width: 80%;
min-width: 300px;
text-align: center;
margin: 0 auto;
font-family: sans-serif;
}