Add index.html
This commit is contained in:
commit
6765ecea98
|
@ -0,0 +1,33 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>[DOMAIN NAME]</title>
|
||||
<meta name="description" content="Basic index of sites under [DOMAIN NAME]" />
|
||||
<style>
|
||||
* {
|
||||
background-color: black;
|
||||
text-align: center;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
color: white;
|
||||
text-align: center;
|
||||
}
|
||||
body {
|
||||
height: 100vh;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
flex-flow: column
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<h1 style="margin-bottom: 2rem;">Welcome to [DOMAIN NAME]</h1>
|
||||
<p style="margin-bottom: 0.5rem;">Nothing lives on this exact domain yet, but there are a couple subdomains worth visiting:</p>
|
||||
<ul style="list-style-type: none; margin-bottom: 1rem;">
|
||||
<li><a href="[SUBDOMAIN1/URL1]">[SUBDOMAIN1/URL1]</a> - [DESCRIPTION]</li>
|
||||
</ul>
|
||||
<p style="margin-bottom: 1rem;">~</p>
|
||||
<p>Site developed by <a href="https://github.com/Burn-E99/" target="_blank">Ean Milligan</a>.</p>
|
||||
</body>
|
||||
</html>
|
Loading…
Reference in New Issue