Add contact page

This commit is contained in:
Fred Boniface 2022-10-10 21:45:18 +01:00
parent 8993616660
commit 90137cc4ca
2 changed files with 29 additions and 0 deletions

21
contact.php Normal file
View File

@ -0,0 +1,21 @@
<!DOCTYPE html>
<html lang="en">
<head>
<?php include "./page-blocks/head.php"; ?>
<title>Contact</title>
</head>
<body>
<?php include "./page-blocks/menu.php"; ?>
<h1 class="page-title">Contact</h1>
<div class="page-main-content">
<a href="/downloads/vcard.vcf" class="download-link">Add me to your contacts</a>
</div>
<?php include "./page-blocks/footer.php"; ?>
</body>
</html>

View File

@ -39,6 +39,14 @@ body {
padding-top: 45px; padding-top: 45px;
} }
.download-link {
background-color: #444444;
color: #f1f1f1;
border: 0px;
border-radius: 10px;
text-align: center;
}
footer { footer {
background-color: rgb(61, 61, 61); background-color: rgb(61, 61, 61);
color: #eeeeee; color: #eeeeee;