first commit

This commit is contained in:
Gary 2023-11-03 14:39:59 -07:00
commit 4aa9a30105
7 changed files with 574 additions and 0 deletions

0
README.md Normal file
View File

BIN
assets/favicon.ico Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 17 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.3 KiB

BIN
assets/lightbulb.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 340 B

BIN
assets/list.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 161 B

288
css/styles.css Normal file
View File

@ -0,0 +1,288 @@
* {
font-family: DejaVu Sans, Helvetica, sans-serif;
}
body {
background: #121212;
margin: 0;
padding: 0;
min-height: 100vh;
}
header {
padding: 0;
margin: 0;
}
main {
flex: 1;
display: flex;
flex-wrap: wrap;
justify-content: space-around;
align-items: flex-start;
padding: 20px;
}
.flex-column {
flex: 100%;
flex-direction: column;
display: flex;
align-items: center;
color: var(--text-color);
padding: 20px;
margin: 10px;
text-align: center;
min-height: 50vh;
justify-content: space-evenly;
border-bottom: 1px solid rgb(0, 0, 0);
}
.flex-row {
flex: 100%;
flex-direction: row;
display: flex;
color: var(--text-color);
padding: 20px;
margin: 10px;
text-align: center;
border-radius: 5px;
flex-wrap: wrap;
justify-content: center;
}
.flex-container {
padding: 5rem;
display: flex;
flex-wrap: wrap;
flex-direction: column;
justify-content: space-evenly;
align-items: center;
}
footer {
color: var(--text-color);
text-align: center;
padding: 1rem;
flex: 1;
display: flex;
flex-wrap: wrap;
justify-content: space-evenly;
}
h1,
h2,
h3,
h4,
p {
color: white;
}
a {
color: white;
text-decoration: none;
}
.button-1 {
align-items: center;
background-color: #fff;
border-radius: 12px;
box-shadow: transparent 0 0 0 3px, rgba(18, 18, 18, 0.1) 0 6px 20px;
box-sizing: border-box;
color: #121212;
cursor: pointer;
display: flex;
flex: 0 0 auto;
font-family: Inter, sans-serif;
font-size: 1.2rem;
font-weight: 700;
justify-content: center;
line-height: 1;
margin: 1rem;
outline: none;
padding: 1rem 1.2rem;
text-align: center;
text-decoration: none;
transition: box-shadow 0.2s, -webkit-box-shadow 0.2s;
white-space: nowrap;
border: 0;
user-select: none;
-webkit-user-select: none;
touch-action: manipulation;
width: fit-content;
}
.button-1:hover {
box-shadow: #00bcf3 0 0 0 3px, transparent 0 0 0 0;
}
.button-2 {
align-items: center;
border-radius: 12px;
box-shadow: transparent 0 0 0 3px, rgba(255, 255, 255, 0.1) 0 6px 20px;
box-sizing: border-box;
color: white;
cursor: pointer;
display: flex;
flex: 0 0 auto;
font-family: Inter, sans-serif;
font-size: 1.2rem;
font-weight: 700;
justify-content: center;
line-height: 1;
margin: 1rem;
outline: none;
padding: 1rem 1.2rem;
text-align: center;
text-decoration: none;
white-space: nowrap;
box-shadow: #ffffff 0 0 0 3px, transparent 0 0 0 0;
user-select: none;
-webkit-user-select: none;
touch-action: manipulation;
width: fit-content;
}
.button-2:hover {
box-shadow: #00bcf3 0 0 0 3px, transparent 0 0 0 0;
}
/* Menu */
.menu {
margin: 0 auto;
display: flex;
justify-content: center;
align-content: center;
flex-direction: row;
flex-wrap: wrap;
}
nav {
margin: 50px 0;
background-color: #2c2c2c;
display: flex;
align-content: space-around;
justify-content: center;
flex: 1;
flex-wrap: wrap;
}
nav ul {
padding: 0;
margin: 0;
list-style: none;
display: flex;
flex-wrap: wrap;
justify-content: center;
align-content: center;
align-items: center;
}
nav ul li {
display: flex;
background-color: #2c2c2c;
}
nav a {
display: flex;
padding: 0 10px;
color: #fff;
font-size: 20px;
line-height: 60px;
text-decoration: none;
justify-content: center;
align-content: center;
align-items: center;
transition: box-shadow 0.2s, -webkit-box-shadow 0.2s;
border-radius: 12px;
margin: 1rem;
}
.menu-items a:hover {
box-shadow: #00bcf3 0 0 0 3px, transparent 0 0 0 0;
}
/* Hide Dropdowns by Default */
nav ul ul {
display: none;
position: absolute;
top: 130px; /* Adjust the height of the main nav */
}
/* Display Dropdowns on Hover */
nav ul li:hover > ul {
display: flex;
flex-direction: column;
justify-content: center;
align-content: center;
align-items: center;
}
/* First Tier Dropdown */
nav ul ul li {
display: flex;
width: 100%;
float: none;
justify-content: center;
align-content: center;
align-items: center;
}
/* Second, Third and more Tiers */
nav ul ul ul li {
position: relative;
top: -100px;
left: 100%;
}
.drop {
cursor: pointer;
display: none;
}
input[type="checkbox"] {
display: none;
}
.menu-items {
display: flex;
}
:checked + .drop:after {
display: none;
}
input:checked + .drop + .menu-items {
display: flex;
}
/* mobile menu */
@media all and (max-width: 960px) {
/* First Tier Dropdown */
/* Display All Items in Full-width Column */
nav ul li {
display: flex;
width: 100%;
text-align: center;
justify-content: center;
align-content: center;
align-items: center;
}
nav ul ul li {
display: none;
width: 100%;
float: none;
justify-content: center;
align-content: center;
align-items: center;
}
.drop {
cursor: pointer;
display: flex;
justify-content: center;
align-content: center;
align-items: center;
}
input[type="checkbox"] {
display: none;
}
.menu-items {
display: none;
}
input:checked + .drop + .menu-items {
display: flex;
}
}

286
index.html Normal file
View File

@ -0,0 +1,286 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Last Hour Hosting</title>
<meta name="description" content="" />
<meta name="author" content="Shiloh" />
<meta property="og:title" content="Last Hour Hosting" />
<meta property="og:type" content="website" />
<meta property="og:url" content="https://www.lasthourhosting.org" />
<meta property="og:description" content="" />
<meta property="og:image" content="" />
<link rel="icon" href="./assets/favicon.ico" />
<link rel="icon" href="./assets/" type="image/svg+xml" />
<link rel="apple-touch-icon" href="/apple-touch-icon.png" />
<link rel="stylesheet" href="css/styles.css?v=1.0" />
</head>
<body>
<header>
<div class="menu">
<nav>
<a class="logo" href="#"
><img
src="./assets/last_hour_hosting_logo.png"
alt="Last Hour Hosting Logo"
/></a>
<input id="_1" type="checkbox" />
<label class="drop" for="_1"
><img
src="./assets/list.png"
alt="Last Hour Hosting Logo"
width="20"
height="20"
/></label>
<ul class="menu-items">
<li>
<a href="#">Services</a>
<ul>
<li><a href="#">VPS Hosting</a></li>
<li><a href="#">Shared Hosting</a></li>
<li><a href="#">Managed Hosting</a></li>
<li><a href="#">DDoS Protection</a></li>
</ul>
</li>
<li>
<a href="#">Features</a>
<ul>
<li><a href="#">Resources</a></li>
<li><a href="#">Links</a></li>
<li><a href="#">Tutorials</a></li>
</ul>
</li>
<li><a href="#">Pricing</a></li>
<li>
<a href="#">Company</a>
<ul>
<li><a href="#">About Us</a></li>
<li><a href="#">SLA</a></li>
<li><a href="#">News</a></li>
<li><a href="#">Contact</a></li>
</ul>
</li>
<li><a href="#">Contact Sales</a></li>
<li><a class="button-2" href="#">Log in</a></li>
<li><a class="button-1" href="#">Sign up</a></li>
</ul>
</nav>
</div>
</header>
<main>
<div class="flex-column">
<h1>Welcome to Last Hour Hosting</h1>
<p>
Experience the power of uncensored, uncompromising Christian web
hosting.
</p>
<a
class="button-1"
role="button"
href="https://my.lasthourhosting.org/signup "
>Create Account</a
>
</div>
<div class="flex-column">
<h2>Our Services</h2>
<div class="flex-row">
<div class="flex-container">
<h2>VPS Hosting</h2>
<p>Description of this service.</p>
<a
class="button-1"
role="button"
href="https://my.lasthourhosting.org/signup "
>Create Account</a
>
</div>
<div class="flex-container">
<h3>Shared Hosting</h3>
<p>Description of this service.</p>
<a
class="button-1"
role="button"
href="https://my.lasthourhosting.org/signup "
>Create Account</a
>
</div>
<div class="flex-container">
<h3>Managed Hosting</h3>
<p>Description of this service.</p>
<a
class="button-1"
role="button"
href="https://my.lasthourhosting.org/signup "
>Create Account</a
>
</div>
<div class="flex-container">
<h3>DDoS Protection</h3>
<p>Description of this service.</p>
<a
class="button-1"
role="button"
href="https://my.lasthourhosting.org/signup "
>Create Account</a
>
</div>
<div class="flex-container">
<h3>Data Migration</h3>
<p>Description of this service.</p>
<a
class="button-1"
role="button"
href="https://my.lasthourhosting.org/signup "
>Create Account</a
>
</div>
</div>
</div>
<div class="flex-column">
<h2>Locations</h2>
<div class="flex-row">
<div class="flex-container">
<h3>Iceland Offshore</h3>
<p>Secure high-end servers</p>
<a
class="button-1"
role="button"
href="https://my.lasthourhosting.org/signup "
>Create Account</a
>
</div>
<div class="flex-container">
<h3>Romania (Coming soon)</h3>
<p>Description of this service.</p>
<a
class="button-1"
role="button"
href="https://my.lasthourhosting.org/signup "
>Request this location.</a
>
</div>
<div class="flex-container">
<h3>Finland (Coming soon)</h3>
<p>Description of this service.</p>
<a
class="button-1"
role="button"
href="https://my.lasthourhosting.org/signup "
>Request this location.</a
>
</div>
</div>
</div>
<div class="flex-column"><h2>But Why Use Us?</h2></div>
<div class="flex-column"><h2>Frequently Asked Questions</h2></div>
<div class="flex-column">
<h2>Questions? Not sure what to choose?</h2>
</div>
<div class="flex-column">
<h2>Supported Payments</h2>
<div class="flex-row">
<div class="flex-container">
<h3>Cryptocurrencies Recommended</h3>
<p>
We recommend you use crypto to gain full anonymity. We currently
support payments with cryptocurrencies such as:
</p>
<h3>Monero</h3>
<h3>Bitcoin LN</h3>
<h3>Etherium</h3>
</div>
<div class="flex-container">
<h3>Credit Card Payments Also Available</h3>
<p>
We fully support payments from the all major credit card
providers. As well as direct bank transfers from UK, US, EU and PL
bank accounts. It is recommended to utilize a virtual card service
to preserve anonymity with us.
</p>
</div>
</div>
</div>
</main>
<footer>
<div class="flex-row">
<div class="flex-container">
<h3>Products</h3>
<a href="https://lasthourhosting.org/legal/use-policy"
><p>Product 1</p></a
>
<a href="https://lasthourhosting.org/legal/use-policy"
><p>Product 2</p></a
>
<a href="https://lasthourhosting.org/legal/use-policy"
><p>Product 2</p></a
>
</div>
<div class="flex-container">
<h3>Features</h3>
<a href="https://lasthourhosting.org/legal/use-policy"
><p>Product 1</p></a
>
<a href="https://lasthourhosting.org/legal/use-policy"
><p>Product 2</p></a
>
<a href="https://lasthourhosting.org/legal/use-policy"
><p>Product 2</p></a
>
</div>
<div class="flex-container">
<h3>Resources</h3>
<a href="https://lasthourhosting.org/legal/use-policy"
><p>Product 1</p></a
>
<a href="https://lasthourhosting.org/legal/use-policy"
><p>Product 2</p></a
>
<a href="https://lasthourhosting.org/legal/use-policy"
><p>Product 2</p></a
>
</div>
<div class="flex-container">
<h3>Company</h3>
<a href="https://lasthourhosting.org/legal/use-policy"
><p>Product 1</p></a
>
<a href="https://lasthourhosting.org/legal/use-policy"
><p>Product 2</p></a
>
<a href="https://lasthourhosting.org/legal/use-policy"
><p>Product 2</p></a
>
</div>
</div>
<div class="flex-container">
<p>&copy; 2023-2024 LASTHOURHOSTING.ORG. ALL RIGHTS RESERVED.</p>
</div>
<div class="flex-container">
<a href="https://lasthourhosting.org/legal/use-policy"
><p>Terms of Service</p></a
>
<a href="https://lasthourhosting.org/legal/use-policy"
><p>AUP/DMCA</p></a
>
<a href="https://lasthourhosting.org/legal/privacy-policy"
><p>Privacy Policy</p></a
>
<a href="https://lasthourhosting.org/legal/cookie-policy"
><p>Cookie Policy</p></a
>
<a href="https://lasthourhosting.org/canary"><p>Warrant Canary</p></a>
<a href="https://status.lasthourhosting.org"><p>Status</p></a>
<a href="https://status.lasthourhosting.org"><p>Onion(TOR)</p></a>
<a href="https://status.lasthourhosting.org"><p>Hyphanet</p></a>
</div>
</footer>
</body>
</html>