-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
114 lines (114 loc) · 4.04 KB
/
index.html
File metadata and controls
114 lines (114 loc) · 4.04 KB
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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/x-conl" href="favicon.ico" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Domain Splitter - Generate Shortened Domains</title>
<!-- META TAGS -->
<meta name="title" content="Domain Splitter" />
<meta
name="description"
content="Shorten your domain using a TLD. (Turn 'youtube.com' into 'youtu.be')"
/>
<meta property="og:type" content="website" />
<meta property="og:url" content="https://domain-splitter.beebl.es/" />
<meta property="og:title" content="Domain Splitter" />
<meta
property="og:description"
content="Shorten your domain using a TLD. (Turn 'youtube.com' into 'youtu.be')"
/>
<meta
property="og:image"
content="https://domain-splitter.beebl.es/meta.png"
/>
<meta property="twitter:card" content="summary_large_image" />
<meta property="twitter:url" content="https://domain-splitter.beebl.es/" />
<meta property="twitter:title" content="Domain Splitter" />
<meta
property="twitter:description"
content="Shorten your domain using a TLD. (Turn 'youtube.com' into 'youtu.be')"
/>
<meta
property="twitter:image"
content="https://domain-splitter.beebl.es/meta.png"
/>
</head>
<body class="bg-gradient-to-br from-slate-100 to-slate-400 h-full">
<div class="flex flex-col justify-center h-full">
<div class="text-center m-auto px-5">
<div class="pb-5">
<h1
class="text-6xl md:text-8xl font-bold pb-5 bg-clip-text bg-gradient-to-tl from-slate-900 to-slate-700 text-transparent"
>
Domain Splitter
</h1>
<div class="pb-5">
<h2 class="text-xl font-medium">
Enter a word, and see what possible shortened domains you could
purchase
</h2>
<h3 class="text-lg font-light">
(Does not check for domain avaliability, simply what valid
extensions could be used)
</h3>
</div>
<form id="form">
<input
id="field"
type="text"
placeholder="Enter a word/name"
class="bg-gradient-to-tl from-slate-400 to-slate-200 px-5 py-2 rounded-3xl border-slate-800 shadow-lg text-slate-800 placeholder:text-slate-500 placeholder:text-center placeholder:text-lg caret-slate-700"
/>
<br />
<input
id="submit"
type="submit"
value="Search!"
class="mt-5 text-2xl text-slate-800 font-semibold cursor-pointer"
/>
</form>
</div>
<div id="answer" class="invisible">
<div class="text-2xl">
<span id="matchInfo" class="font-medium"
>All valid TLD's found:
</span>
<span
id="matches"
class="font-semibold bg-gradient-to-tl from-green-800 to-green-600 bg-clip-text text-transparent"
></span>
</div>
<div class="text-xl">
<div>
<span id="domainInfo">Possible domains: </span>
<span
id="fullDomains"
class="font-medium bg-gradient-to-tl from-green-800 to-green-600 bg-clip-text text-transparent"
></span>
</div>
</div>
</div>
</div>
<div class="mt-auto flex">
<div class="mr-auto pl-4 pb-2">
<a
href="https://github.com/beebls/domain-splitter"
target="_blank"
class="font-medium text-slate-900 text-lg"
>View Source Code
</a>
</div>
<div class="ml-auto pr-4 pb-2">
<a
href="https://beebl.es"
target="_blank"
class="font-medium text-slate-900 text-xl"
>Made by Beebl.es</a
>
</div>
</div>
</div>
<script type="module" src="/main.js"></script>
</body>
</html>