initial website setup

This commit is contained in:
Santiago Forero 2021-09-04 09:39:13 -05:00
parent ad509e84ed
commit 18a8ab5a4f
7 changed files with 137 additions and 0 deletions

27
contact.php Normal file
View File

@ -0,0 +1,27 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Fira+Code:wght@400;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="css/theme.css">
<title>contact</title>
</head>
<body>
<?php
include('nav.php')
?>
<div id="content">
<h1>contact</h1>
</div>
<?php
include('footer.php')
?>
</body>
</html>

14
css/theme.css Normal file
View File

@ -0,0 +1,14 @@
body {
font-family: 'Fira Code', monospace;
background: #006400;
color: white;
}
a {
color: inherit;
}
#content {
width: 90%;
margin: auto;
}

27
donate.php Normal file
View File

@ -0,0 +1,27 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Fira+Code:wght@400;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="css/theme.css">
<title>donate</title>
</head>
<body>
<?php
include('nav.php')
?>
<div id="content">
<h1>donate</h1>
</div>
<?php
include('footer.php')
?>
</body>
</html>

0
footer.php Normal file
View File

31
index.php Normal file
View File

@ -0,0 +1,31 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Fira+Code:wght@400;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="css/theme.css">
<title>Tildania</title>
</head>
<body>
<?php
include('nav.php')
?>
<div id="content">
<hr>
<h1>welcome to tilde.land</h1>
<p>Tildania also known as tilde.land is a tilde community based around a digital micronation called Tildania.</p>
<h2>users</h2>
</div>
<?php
include('footer.php')
?>
</body>
</html>

7
nav.php Normal file
View File

@ -0,0 +1,7 @@
<nav id="main-nav">
<a href="/">tilde.land</a>
<a href="/signup.php">signup</a>
<a href="/contact.php">contact</a>
<a href="/donate.php">donate</a>
</nav>

31
template.php Normal file
View File

@ -0,0 +1,31 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Fira+Code:wght@400;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="css/theme.css">
<title>Tildania</title>
</head>
<body>
<?php
include('nav.php')
?>
<div id="content">
<hr>
<h1>welcome to tilde.land</h1>
<p>Tildania also known as tilde.land is a tilde community based around a digital micronation called Tildania.</p>
<h2>users</h2>
</div>
<?php
include('footer.php')
?>
</body>
</html>