28 lines
672 B
HTML
28 lines
672 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Landing Page</title>
|
|
<style>
|
|
body {
|
|
background-color: black;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
height: 100vh;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
img {
|
|
max-width: 700px;
|
|
max-height: 700px;
|
|
width: auto;
|
|
height: auto;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<img src="tcs-bbs.png" alt="A ghost peeking out from behind a tree">
|
|
</body>
|
|
</html>
|