Debut index.html
This commit is contained in:
parent
50f1cd2ace
commit
f9c7429113
4 changed files with 31 additions and 6 deletions
BIN
assets/bg.webp
Normal file
BIN
assets/bg.webp
Normal file
Binary file not shown.
After Width: | Height: | Size: 1.6 MiB |
BIN
assets/map.jpeg
Normal file
BIN
assets/map.jpeg
Normal file
Binary file not shown.
After Width: | Height: | Size: 230 KiB |
19
index.html
19
index.html
|
@ -1,9 +1,18 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
|
||||
<head>
|
||||
<link rel="stylesheet" href="./style.css">
|
||||
</head>
|
||||
<body>
|
||||
<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>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
|
||||
|
|
16
style.css
16
style.css
|
@ -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');
|
||||
}
|
Loading…
Reference in a new issue