This commit is contained in:
Chris Bell 2025-01-03 23:38:26 -06:00
commit 0f080e98a9
5 changed files with 69 additions and 0 deletions

27
index.html Normal file
View File

@ -0,0 +1,27 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Bellsworne Tech</title>
<link rel="icon" href="res/img/logo.svg">
<link rel="stylesheet" href="res/css/main.css">
</head>
<body>
<div id="header">
</div>
<div id="header-img">
<img src="res/img/logo.png" alt="Bellsworne Tech Logo">
</div>
<div id="content">
<h1>Welcome to Bellsworne Tech! This web page is currently under construction. Please check back with us soon!</h1>
</div>
<div id="footer">
</div>
</body>
</html>

42
res/css/main.css Normal file
View File

@ -0,0 +1,42 @@
:root {
--main-font-color: #dedede;
--main-bg-color: #2a2a2a;
--main-accent-color: #b28261;
--secondary-accent-color: #8f4040;
}
* {
margin: 0;
padding: 0;
font-family: 'LeagueGothic', 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
color: var(--main-font-color);
letter-spacing: 1px;
}
@font-face {
font-family: 'LeagueGothic';
src: url('../fonts/LeagueGothic.ttf');
}
body {
background-color: var(--main-bg-color);
}
#header-img {
width: 100vw;
height: 25vh;
display: flex;
justify-content: center;
align-items: center;
padding-top: 5vh;
padding-bottom: 5vh;
}
#header-img img {
max-width: 100%;
max-height: 100%;
}
#content {
text-align: center;
}

BIN
res/fonts/LeagueGothic.ttf Executable file

Binary file not shown.

BIN
res/img/bellsworne-tech.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 123 KiB

BIN
res/img/logo.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 124 KiB