init webpage
All checks were successful
Rust Checks / checks (push) Successful in 2m16s
Rust Checks / checks (pull_request) Successful in 2m3s

This commit is contained in:
CoCo_Sol 2024-03-30 19:53:38 +01:00
parent fa78c56049
commit df471793f0
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);
}