diff options
author | NeodarZ <bretoncorentin44@gmail.com> | 2016-06-02 16:30:27 +0200 |
---|---|---|
committer | NeodarZ <bretoncorentin44@gmail.com> | 2016-06-02 16:30:27 +0200 |
commit | a095fb1c61ae36ef83a6a6bbfcddf44347fa779a (patch) | |
tree | 7621c2bd31170e9a35f9e27bc5420f611df7c977 /index.php | |
download | my_old_personal_website-a095fb1c61ae36ef83a6a6bbfcddf44347fa779a.tar.xz my_old_personal_website-a095fb1c61ae36ef83a6a6bbfcddf44347fa779a.zip |
First commit
Diffstat (limited to '')
-rwxr-xr-x | index.php | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/index.php b/index.php new file mode 100755 index 0000000..a8c86d2 --- /dev/null +++ b/index.php @@ -0,0 +1,31 @@ +<!DOCTYPE html> +<html> + <head> + <title>#Home</title> + <link href="ressources/styles/default.css" rel="stylesheet" type="text/css"> + <link href="ressources/styles/menu_gost.css" rel="stylesheet" type="text/css"> + <link rel="icon" type="image/png" href="ressources/images/fox_v2_ico.png" /> + <meta charset='UTF-8'> + </head> + + <body > + <div class="page"> + + <?php include 'ressources/includes/header.php'; ?> + + + + <div class="site-content"> + <div class="article"><div class="articleT"><h1>A propos...</h1></div> + <p>Je m'appelle Corentin Breton (<i class="fa fa-at fa-lg"></i>NeodarZ), je suis en première année de BTS SIO (Service Informatique aux Organisations) au Lycée Andrée Malraux.</p> + <p>Plus précisément, je fais des études dans le développement informatique web & logiciel. Mes passions sont la programmation et la bidouille, lien vers mon GitHub :</p> + <a href="https://github.com/NeodarZ"><span class="button"> <i class="fa fa-github fa-lg"></i> GitHub </span></a> + </div> + </div> + + <?php include 'ressources/includes/footer.php'; ?> + + </div> + </body> + +</html> |