Added all the file that have been started

This commit is contained in:
Justin Frasier 2025-11-12 20:00:30 -06:00
parent 6858b13a4d
commit 71bdef04f3
4 changed files with 49 additions and 0 deletions

25
css/main.css Normal file
View File

@ -0,0 +1,25 @@
body{
background-image: url("../images/Shreveport.jpg");
background-color: black;
background-repeat: no-repeat;
background-size: cover;
background-position: center;
background-attachment: fixed;
}
.title{
font-family: "Press Start 2P", system-ui;
text-align: center;
font-size: 3.5em;
padding-top: 1em;
font-weight: 600;
}
.off-white{
background-color: rgb(245,245,245,0.8);
width: 80%;
max-width: 10em;
margin: 0.5em auto; /* Center the box horizontally and add top/bottom margin */
padding: 0.5em; /* Add some padding inside the box */
border-radius: 0.25em; /* Optional: Rounded corners */
}

BIN
favicon.ico Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB

BIN
images/Shreveport.jpg Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.8 MiB

24
index.html Normal file
View File

@ -0,0 +1,24 @@
<html>
<head>
<meta charset="UTF-8">
<title>K5BSS</title>
<link type="text/css" rel="stylesheet" href="css/main.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap" rel="stylesheet">
</head>
<body>
<div class="title">
<div class="off-white">
K5BSS
</div>
</div>
<div class="intro">
<div class="off-white">
</div>
</div>
</body>
</html>