Add an 'about' link to the project

This commit is contained in:
Tissevert 2023-03-20 22:48:59 +01:00
parent 2f165b5abe
commit df4b7f1ecd
2 changed files with 11 additions and 0 deletions

View File

@ -13,5 +13,6 @@
<p><input id="generate" type="button" value="Inventer un nom !"/></p>
<p id="result"></p>
</div>
<p id="about">C'est <a href="https://git.marvid.fr/Tissevert/Genevee">quoi</a> ce truc ?</p>
</body>
</html>

View File

@ -6,6 +6,9 @@
body {
margin: 0;
background: #feffeb;
min-height: 100%;
width: 100%;
position: absolute;
}
h1 {
@ -26,3 +29,10 @@ div {
div > * {
text-align: center;
}
#about {
position: absolute;
margin: 0.5em;
right: 0;
bottom: 0;
}