refactored the README.md file, added Dockerfile and public_html folder
This commit is contained in:
parent
54346cbceb
commit
365078ae64
10
Dockerfile
Normal file
10
Dockerfile
Normal 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
|
||||
|
@ -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.
|
||||
|
||||
|
||||
|
@ -1,8 +0,0 @@
|
||||
* {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
#wrapper {
|
||||
|
||||
}
|
33
index.html
33
index.html
@ -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
12
public_html/index.html
Normal 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>
|
Loading…
x
Reference in New Issue
Block a user