This repository has been archived by the owner on Jun 5, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
72 lines (59 loc) · 3.46 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- HTML Meta Tags -->
<title>Free Domains</title>
<meta name="description" content="Free subdomains for personal sites, open-source projects, and more.">
<!-- Google / Search Engine Tags -->
<meta itemprop="name" content="Free Domains">
<meta itemprop="description" content="Free subdomains for personal sites, open-source projects, and more.">
<meta itemprop="image" content="https://freesubdomains.org/assets/banner.png">
<!-- Facebook Meta Tags -->
<meta property="og:url" content="https://freesubdomains.org">
<meta property="og:type" content="website">
<meta property="og:title" content="Free Domains">
<meta property="og:description" content="Free subdomains for personal sites, open-source projects, and more.">
<meta property="og:image" content="https://freesubdomains.org/assets/banner.png">
<!-- Twitter Meta Tags -->
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:title" content="Free Domains">
<meta name="twitter:description" content="Free subdomains for personal sites, open-source projects, and more.">
<meta name="twitter:image" content="https://freesubdomains.org/assets/banner.png">
<!-- Favicon -->
<link rel="shortcut icon" href="/assets/favicon.png">
<!-- Scripts -->
<script src="https://cdn.tailwindcss.com"></script>
<script src="https://cdn.jsdelivr.net/npm/typed.js@2.0.12"></script>
</head>
<body class="p-8 max-w-xl m-auto bg-zinc-900 text-white text-center">
<header>
<h1 class="text-4xl font-bold">Free Domains</h1>
<p>Free subdomains for personal sites, open-source projects, and more.</p>
</header>
<div class="mt-8 mb-10">
<h3 class="inline font-bold text-3xl"><span class="typed"></span></h3>
</div>
<main>
<p><a class="border-b font-bold hover:border-none" href="https://github.com/free-domains/register">Free Domains</a> is a service where you can register subdomains for free. Our service offers the opportunity to register subdomains such as <code class="bg-slate-700 py-1 px-2 rounded text-sm">foo.is-a-fullstack.dev</code> or <code class="bg-slate-700 py-1 px-2 rounded text-sm">bar.is-a-fullstack.dev</code> for use with A, AAAA, CNAME, MX and TXT records.</p>
<br>
<p class="mt-2">
<a href="https://github.com/free-domains/register"><button class="bg-green-700 hover:bg-green-800 font-semibold py-2 px-6 rounded-full mr-2">Register</button></a>
<a href="/check"><button class="bg-gray-600 hover:bg-gray-700 font-semibold py-2 px-6 rounded-full">Subdomain Checker</button></a>
</p>
</main>
<footer class="mt-6">
<p>© <script>document.write(new Date().getFullYear())</script> <span class="font-semibold">Free Domains</span> - All Rights Reserved.</p>
</footer>
<script>
var typed = new Typed(".typed", {
strings: ["foo.is-a-fullstack.dev", "bar.is-a-fullstack.dev"],
typeSpeed: 120,
smartBackspace: false,
loop: true
});
</script>
</body>
</html>