Init the webpage (#87)
All checks were successful
Rust Checks / checks (push) Successful in 2m6s

Reviewed-on: fish-canard/border-wars#87
Reviewed-by: Racloody <racloody@noreply.tipragot.fr>
This commit is contained in:
CoCo_Sol 2024-03-30 20:50:13 +00:00
parent fa78c56049
commit 3afb84d1cc
2 changed files with 21 additions and 0 deletions

18
webpage/index.html Normal file
View file

@ -0,0 +1,18 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Border Wars</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<h1>Border Wars</h1>
<p>A beatiful game!</p>
</body>
</html>

3
webpage/styles.css Normal file
View file

@ -0,0 +1,3 @@
body {
background-color: rgb(129, 212, 250);
}