Add footer
Signed-off-by: Max Charrier <max@puffer.fish>
This commit is contained in:
parent
ab77e68344
commit
980067a35c
7
en.html
7
en.html
|
@ -28,5 +28,12 @@
|
||||||
</nav>
|
</nav>
|
||||||
</HEADER>
|
</HEADER>
|
||||||
<P>Welcome to Deez Nuts!</P>
|
<P>Welcome to Deez Nuts!</P>
|
||||||
|
<FOOTER>
|
||||||
|
<ADDRESS>
|
||||||
|
For more details, contact
|
||||||
|
<A HREF="mailto:max@puffer.fish">me</A>.
|
||||||
|
</ADDRESS>
|
||||||
|
<P>Copyright (©) 2025 Max Charrier</P>
|
||||||
|
</FOOTER>
|
||||||
</BODY>
|
</BODY>
|
||||||
</HTML>
|
</HTML>
|
||||||
|
|
|
@ -28,5 +28,12 @@
|
||||||
</nav>
|
</nav>
|
||||||
</HEADER>
|
</HEADER>
|
||||||
<P>Pain, beurre et confiture</P>
|
<P>Pain, beurre et confiture</P>
|
||||||
|
<FOOTER>
|
||||||
|
<ADDRESS>
|
||||||
|
For more details, contact
|
||||||
|
<A HREF="mailto:max@puffer.fish">me</A>.
|
||||||
|
</ADDRESS>
|
||||||
|
<P>Copyright (©) 2025 Max Charrier</P>
|
||||||
|
</FOOTER>
|
||||||
</BODY>
|
</BODY>
|
||||||
</HTML>
|
</HTML>
|
||||||
|
|
|
@ -1,16 +1,18 @@
|
||||||
body {
|
body {
|
||||||
background-color: #f1e9df;
|
background-color: #f1e9df;
|
||||||
color: #89a06b;
|
color: #89a06b;
|
||||||
|
margin: 30px 20%;
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
justify-content: center;
|
gap: 30px;
|
||||||
font-family: 'comic_monobold', ui-monospace, monospace;
|
font-family: 'comic_monobold', ui-monospace, monospace;
|
||||||
font-size: 1.4rem;
|
font-size: 1.4em;
|
||||||
}
|
}
|
||||||
header {
|
header {
|
||||||
margin: 30px;
|
align-self: center;
|
||||||
padding: 0 18%;
|
padding: 0 18%;
|
||||||
|
padding-bottom: 20px;
|
||||||
border-bottom: 1px solid #a89a8e;
|
border-bottom: 1px solid #a89a8e;
|
||||||
}
|
}
|
||||||
h1 {
|
h1 {
|
||||||
|
@ -18,9 +20,6 @@ h1 {
|
||||||
font-size: 3.2rem;
|
font-size: 3.2rem;
|
||||||
letter-spacing: 0.5rem;
|
letter-spacing: 0.5rem;
|
||||||
}
|
}
|
||||||
nav {
|
|
||||||
margin: 10px;
|
|
||||||
}
|
|
||||||
nav aside {
|
nav aside {
|
||||||
zoom: 60%;
|
zoom: 60%;
|
||||||
}
|
}
|
||||||
|
@ -39,6 +38,12 @@ nav aside a {
|
||||||
nav ul {
|
nav ul {
|
||||||
margin-top: 10px;
|
margin-top: 10px;
|
||||||
display: flex;
|
display: flex;
|
||||||
justify-content: space-around;
|
justify-content: space-evenly;
|
||||||
font-size: 1rem;
|
font-size: 1rem;
|
||||||
}
|
}
|
||||||
|
footer {
|
||||||
|
align-self: center;
|
||||||
|
padding: 20px 18%;
|
||||||
|
border-top: 1px solid #a89a8e;
|
||||||
|
font-size: 0.8rem
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in a new issue