Basic test of images and css and such :3

This commit is contained in:
Haze Weathers 2024-08-18 20:21:17 -04:00
parent 96b4cff433
commit ed0a1c7326
4 changed files with 50 additions and 1 deletions

17
css/style.css Normal file
View file

@ -0,0 +1,17 @@
body {
background-image: url("/img/bg-checkers.png");
background-repeat: repeat;
background-position: 50% 0;
}
#page {
max-width: 960px;
width: auto;
margin: 0 auto;
padding-top: 1em;
background-color: #b4d5ed;
display: flex;
justify-content: center;
align-items: center;
}

BIN
img/bg-checkers.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 816 B

BIN
img/logo.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.5 KiB

View file

@ -1 +1,33 @@
<h1> Welcome To Team SG World!</h1> <!doctype html>
<html lang="en-US">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width" />
<title>Team SG</title>
<link rel="stylesheet" href="/css/style.css" />
</head>
<body>
<div id="page">
<header>
<img src="/img/logo.png" />
<h2>Similar People Create</h2>
</header>
<nav>
</nav>
<main>
</main>
<footer>
</footer>
</div>
</body>
</html>