Debut index.html

This commit is contained in:
leandro-rdz 2023-11-14 18:16:08 +01:00
parent 50f1cd2ace
commit f9c7429113
4 changed files with 31 additions and 6 deletions

BIN
assets/bg.webp Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 MiB

BIN
assets/map.jpeg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 230 KiB

View file

@ -1,9 +1,18 @@
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="./style.css">
</head>
<body>
</body>
<head>
<link rel="stylesheet" href="./style.css">
<meta charset="UTF-8">
</head>
<body id="background-image">
<form>
<h1>Grand Tabernacle Auto</h1>
<p> Le plus grand tabernacleur de notre ère est:</p>
<input type="text" placeholder="Nom du tabernacleur" id="name">
<input type="submit" value="Jouer" placeholder="Jouer">
</form>
</body>
</html>

View file

@ -0,0 +1,16 @@
body{
display: flex;
justify-content: center;
align-items: center;
position: fixed;
width: 100%;
height: 100%;
}
h1{
font-size: 24px;
margin-top: 20px;
}
#background-image {
background-image: url('./assets/bg.webp');
}