Create 'new-site'

This commit is contained in:
Fred Boniface 2022-09-10 20:55:33 +01:00
parent 2c224d436f
commit 04415d0774
2 changed files with 52 additions and 0 deletions

14
new-site/css/styles.css Normal file
View File

@ -0,0 +1,14 @@
body {
width: 90%;
background-color: #B4C6E2;
}
.page-title {
text-align: center;
color: #323C4A;
}
.page-main-content {
text-align: left;
color: #495568;
}

38
new-site/index.html Normal file
View File

@ -0,0 +1,38 @@
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" href="./css/styles.css">
<title>Fred Boniface - Hello</title>
</head>
<body>
<h1 class="page-title">Hello</h1>
<div class="page-main-content">
<p>
Hi, I am Fred Boniface - a 28 year old Rail Professional with many
interests outside of work and while I do have many opinions about the
state of the rail industry at present, this website aims to be about
my personal life and interests, rather than my work.
</p>
<p>
I am married to Jade and we have two children, Lucy & Ava-Rose - both
in school. I will get around to adding some images to this page - I
promise.
</p>
<p>
To keep this homepage simple and easy to digest, I won't waffle on
about too much here, but there is more to read about each topic on
the relevant page.
</p>
</div>
<footer>
© Frederick Boniface 2022
</footer>
</body>