Initial Commit

This commit is contained in:
James Dinh 2022-05-26 22:09:31 -07:00
commit 112992f533
2 changed files with 70 additions and 0 deletions

23
css/general.css Normal file
View File

@ -0,0 +1,23 @@
/*
Gilroy Hacks Website Source Code -> CSS (https://gilroyhacks.com)
For more info, contact jamesdinh77 (at) protonmail (dot) com
*/
html {
scroll-behavior: smooth;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
.header-background {
background-image: none;
background-position: center;
background-size: cover;
background-repeat: no-repeat;
background-attachment: fixed;
height: 100vh; /* makes it so it covers the entire page */
}

47
index.html Normal file
View File

@ -0,0 +1,47 @@
<!DOCTYPE html>
<html lang="en">
<!--
Official Gilroy Hacks Website Source Code -> HTML (https://gilroyhacks.com)
For more info, contact jamesdinh77 (at) protonmail (dot) com
-->
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Gilroy Hacks</title>
<link href="css/general.css" rel="stylesheet" type="text/css" media="all">
<link rel="icon" href="">
<meta name="author" content="Gilroy Hacks">
<meta name="copyright" content="This site and its pages are Copyright (c) 2022 Gilroy Hacks All Rights Reserved.">
<meta name="description" content="The official webiste for the Gilroy Hacks Hackathon. Strengthen your skills and collaborate with others to create something useful.">
<meta name="keywords" content="Gilroy Hacks, GilroyHacks, Gilroy, hackathon, Bay Area, GECA, Dr. TJ Owens Gilroy Early College Academy">
<style>
@font-face {
font-family: "Glacial Indifference";
src: url("font/GlacialIndifference-Regular.otf") format('opentype');
font-display: swap;
}
body {
position: relative;
background-color: #141313 !important;
background-image: "";
color: #f2f1ef !important;
font-family: "Glacial Indifference";
}
</style>
<!--For icons, go here: https://iconsvg.xyz/ -->
</head>
<header>
<div class="header-background">
<div id="header">
</div>
</div>
</header>
<body>
</body>
</html>