refactored the README.md file, added Dockerfile and public_html folder

This commit is contained in:
Andrea 2021-09-02 19:31:25 +02:00
parent 54346cbceb
commit 365078ae64
No known key found for this signature in database
GPG Key ID: D6B0878B0B161802
5 changed files with 27 additions and 42 deletions

10
Dockerfile Normal file
View File

@ -0,0 +1,10 @@
ARG version=2.4.48
FROM httpd:$version-alpine
LABEL version=1.0
COPY ./public_html/ /usr/local/apache2/htdocs/
EXPOSE 80/tcp

View File

@ -1,3 +1,7 @@
# Nullable's website
My personal website. You can find some of my personal information, my work experiences and all my contacts.
A simple website built with [Docker](https://www.docker.com/) and [apache httpd image](https://hub.docker.com/_/httpd/).
In this repository you can find the Dockerfile and the public_html containing all the file for the website.

View File

@ -1,8 +0,0 @@
* {
margin: 0;
padding: 0;
}
#wrapper {
}

View File

@ -1,33 +0,0 @@
<!doctype html>
<html lang="it" dir="ltr">
<head>
<meta charset="utf-8"/>
<meta http-equiv="content-type" content="text/html; charset=UTF-8"/>
<meta name="author" content="Andrea Foletto"/>
<meta name="description" content="index"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<link rel="stylesheet" href="css/style.css">
<title>Nullable</title>
<!--[if lt IE 9]>
<script type="text/javascript" src="http://html5shiv.googlecode.com/svn/trunk/html5.js">
</script>
<![endif]-->
</head>
<body>
<div id="wrapper">
<header>
</header>
<nav>
<a href="#">Mi presento</a>
<a href="#">Contatti</a>
</nav>
<div id="content">
</div>
<footer>
</footer>
</div>
</body>
</html>

12
public_html/index.html Normal file
View File

@ -0,0 +1,12 @@
<!doctype html>
<html>
<head>
<title>Null</title>
<meta name="viewport" content="width=device-width, inital-scale=1.0"/>
<meta name="author" content="andrewfoll@protonmail.com"/>
</head>
<body>
<h2>Hello, World!</h2>
<p>Nothing to do here, just a boring page</p>
</body>
</html>