This commit is contained in:
zoe 2022-01-20 13:18:23 +01:00
parent 295411d8fa
commit 32e72eb2e2
8 changed files with 178 additions and 44 deletions

View file

@ -7,40 +7,13 @@
charset="utf-8"
name="viewport"
/>
<style>
@import url('https://fonts.googleapis.com/css2?family=Prata&display=swap');
body {
margin: 0;
padding: 0;
}
div {
margin: 0;
padding: 0;
display: flex;
justify-content: center;
align-items: center;
height: 100%;
margin-left: 24%;
margin-right: 24%;
}
a {
color: floralwhite;
font-size: 40pt;
text-align: center;
font-family: 'Prata', serif;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
body {
background-color: #080808;
}
</style>
</head>
<body id="body">
<div class="main">
<a href=".">{{wisdom}}</a>
<br>
<a href="./frakes">Wisdom website asks you things</a>
<a href="./cooking">Cooking wisdom</a>
<br>
</div>
</body>
</html>

28
templates/style.css Normal file
View file

@ -0,0 +1,28 @@
@import url("https://fonts.googleapis.com/css2?family=Prata&display=swap");
body {
margin: 0;
padding: 0;
}
div {
margin: 0;
padding: 0;
display: flex;
justify-content: center;
align-items: center;
height: 100%;
margin-left: 24%;
margin-right: 24%;
}
a {
color: floralwhite;
font-size: 400%;
text-align: center;
font-family: "Prata", serif;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
body {
background-color: #080808;
}

17
templates/wisdom.html Normal file
View file

@ -0,0 +1,17 @@
<!DOCTYPE html5>
<html lang="en">
<head>
<meta charset="utf-8"/>
<link rel="stylesheet" type="text/css" href="style.css" media="all"/>
<title>Wisdom</title>
<meta charset="utf-8" name="viewport" />
</head>
<body id="body">
<div class="main">
</head />
<a href="">{{ wisdom }}</a>
<a id="home_link" href=".">home</a>
<br />
</div>
</body>
</html>

View file

@ -0,0 +1,17 @@
<!DOCTYPE html5>
<html lang="en">
<head>
<meta charset="utf-8"/>
<link rel="stylesheet" type="text/css" href="style.css" media="all"/>
<title>Wisdom</title>
<meta charset="utf-8" name="viewport" />
</head>
<body id="body">
<div class="main">
</head />
<a href="">{{ wisdom }}</a>
<a id="home_link" href=".">home</a>
<br />
</div>
</body>
</html>