Skip to content

Commit 3be8cf1

Browse files
authored
prettier + meta tag updates
1 parent 9c9b845 commit 3be8cf1

File tree

1 file changed

+85
-88
lines changed

1 file changed

+85
-88
lines changed

index.html

Lines changed: 85 additions & 88 deletions
Original file line numberDiff line numberDiff line change
@@ -4,82 +4,99 @@
44
<meta charset="utf-8" />
55
<meta http-equiv="x-ua-compatible" content="ie=edge" />
66
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
7-
<title>is-a.dev | Free sub-domains for developers</title>
7+
8+
<!-- HTML Meta Tags -->
9+
<title>is-a.dev -Free subdomains for developers</title>
810
<meta name="description" content="A service to allow developers to get free `.is-a.dev` subdomains" />
11+
<meta name="theme-color" content="#4E3AA3" />
12+
13+
<!-- Google / Search Engine Tags -->
14+
<meta itemprop="name" content="is-a.dev" />
15+
<meta itemprop="description" content="A service to allow developers to get free `.is-a.dev` subdomains" />
16+
<meta itemprop="image" content="https://is-a.dev/assets/is-a.dev.png" />
17+
18+
<!-- Facebook Meta Tags -->
19+
<meta property="og:url" content="https://is-a.dev/" />
20+
<meta property="og:type" content="website" />
921
<meta property="og:title" content="is-a.dev" />
1022
<meta property="og:description" content="A service to allow developers to get free `.is-a.dev` subdomains" />
11-
<meta property="og:image" content="/assets/is-a.dev.png" />
12-
<meta property="og:url" content="https://is-a.dev" />
13-
<meta property="og:type" content="website" />
23+
<meta property="og:image" content="https://is-a.dev/assets/is-a.dev.png" />
24+
25+
<!-- Twitter Meta Tags -->
1426
<meta name="twitter:card" content="summary_large_image" />
1527
<meta name="twitter:title" content="is-a.dev" />
1628
<meta name="twitter:description" content="A service to allow developers to get free `.is-a.dev` subdomains" />
17-
<meta name="twitter:image" content="/assets/is-a.dev.png" />
29+
<meta name="twitter:image" content="https://is-a.dev/assets/is-a.dev.png" />
30+
31+
<!-- Apple Meta Tags -->
1832
<meta name="apple-mobile-web-app-title" content="is-a.dev" />
1933
<meta name="apple-mobile-web-app-capable" content="yes" />
2034
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" />
21-
<meta name="theme-color" content="#4E3AA3" />
35+
36+
<!-- Favicon -->
2237
<link rel="icon" type="image/x-icon" href="/assets/favicon.ico" />
38+
39+
<!-- Stylesheets -->
2340
<link rel="stylesheet" href="./fonts/Roboto/font.css" />
2441
<link rel="stylesheet" href="./fonts/UbuntuMono/font.css" />
2542
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css" />
26-
27-
<style>
28-
html,
29-
body {
30-
--header-bg: #0f0c19;
31-
--accent: #4e3aa3;
32-
--body-fg: #9b7dff;
33-
34-
margin: 0;
35-
padding: 0;
36-
background-color: #0f0c19;
37-
color: var(--body-fg);
38-
39-
font-family: "Roboto Regular", sans-serif;
40-
padding: 20px;
41-
}
42-
43-
body * {
44-
box-sizing: border-box;
45-
line-height: 1.5em;
46-
}
47-
48-
main > p {
49-
font-family: "Ubuntu Mono Regular";
50-
}
51-
52-
a:hover {
53-
opacity: 0.8;
54-
}
55-
56-
/* scrollbar for chrome users (firefox by default uses their own scrollbar lol) */
57-
::-webkit-scrollbar {
58-
width: 20px;
59-
}
60-
61-
::-webkit-scrollbar-button {
62-
width: 0;
63-
height: 0;
64-
}
65-
66-
::-webkit-scrollbar-track {
67-
background: #0f0c19;
68-
}
69-
70-
::-webkit-scrollbar-thumb {
71-
background: #9b7dff;
72-
border: 6px solid #0f0c19;
73-
border-radius: 10px;
74-
transition: all 0.2s ease-in-out;
75-
}
76-
77-
::-webkit-scrollbar-thumb:hover {
78-
background: #7041ff;
79-
}
80-
</style>
8143
</head>
8244

45+
<style>
46+
html,
47+
body {
48+
--header-bg: #0f0c19;
49+
--accent: #4e3aa3;
50+
--body-fg: #9b7dff;
51+
52+
margin: 0;
53+
padding: 0;
54+
background-color: #0f0c19;
55+
color: var(--body-fg);
56+
57+
font-family: "Roboto Regular", sans-serif;
58+
padding: 20px;
59+
}
60+
61+
body * {
62+
box-sizing: border-box;
63+
line-height: 1.5em;
64+
}
65+
66+
main > p {
67+
font-family: "Ubuntu Mono Regular";
68+
}
69+
70+
a:hover {
71+
opacity: 0.8;
72+
}
73+
74+
/* scrollbar for chrome users (firefox by default uses their own scrollbar lol) */
75+
::-webkit-scrollbar {
76+
width: 20px;
77+
}
78+
79+
::-webkit-scrollbar-button {
80+
width: 0;
81+
height: 0;
82+
}
83+
84+
::-webkit-scrollbar-track {
85+
background: #0f0c19;
86+
}
87+
88+
::-webkit-scrollbar-thumb {
89+
background: #9b7dff;
90+
border: 6px solid #0f0c19;
91+
border-radius: 10px;
92+
transition: all 0.2s ease-in-out;
93+
}
94+
95+
::-webkit-scrollbar-thumb:hover {
96+
background: #7041ff;
97+
}
98+
</style>
99+
83100
<body>
84101
<style>
85102
header {
@@ -107,13 +124,10 @@
107124
border-radius: 20px;
108125
}
109126
</style>
127+
110128
<header>
111129
<div class="domain">
112-
<a href="https://github.com/is-a-dev" target="_blank"
113-
><img
114-
src="https://raw.githubusercontent.com/is-a-dev/register/main/media/banner.png"
115-
style="max-width: 1000px; width: 100%; display: block"
116-
/></a>
130+
<a href="https://github.com/is-a-dev" target="_blank"><img src="https://raw.githubusercontent.com/is-a-dev/register/main/media/banner.png" style="max-width: 1000px; width: 100%; display: block" /></a>
117131
</div>
118132
</header>
119133

@@ -207,23 +221,16 @@ <h1>
207221
<p>Welcome! 👋</p>
208222
</h1>
209223
<p>
210-
<span>is-a.dev</span> is a service that allows developers to get a sweet-looking
211-
<span style="display: inline-block; width: fit-content; line-height: 1">.is-a.dev</span> subdomain for
212-
their personal websites.
224+
<span>is-a.dev</span> is a service that allows developers to get a sweet-looking <span style="display: inline-block; width: fit-content; line-height: 1">.is-a.dev</span> subdomain for their personal websites.
213225
<br />
214226
To register your own subdomain, go to the
215-
<a href="https://github.com/is-a-dev/register" target="_blank">is-a.dev registration repository</a> and
216-
follow the instructions.
227+
<a href="https://github.com/is-a-dev/register" target="_blank">is-a-dev/register</a> repository on GitHub and follow the instructions.
217228
</p>
218229

219230
<h2>Report abuse</h2>
220231
<p>
221232
If you believe one of the subdomains is abusing the service, please
222-
<a
223-
href="https://github.com/is-a-dev/register/issues/new?labels=report-abuse&template=report-abuse.md&title=Report+abuse"
224-
target="_blank"
225-
>report</a
226-
>
233+
<a href="https://github.com/is-a-dev/register/issues/new?labels=report-abuse&template=report-abuse.md&title=Report+abuse" target="_blank">report</a>
227234
it.
228235
</p>
229236

@@ -234,18 +241,8 @@ <h2>Donations</h2>
234241
</p>
235242

236243
<p>
237-
<a href="https://www.buymeacoffee.com/phenax" target="_blank"
238-
><img
239-
src="https://cdn.buymeacoffee.com/buttons/default-orange.png"
240-
alt="Buy Me A Coffee"
241-
height="28"
242-
width="119"
243-
/></a>
244-
<a href="https://liberapay.com/phenax" target="_blank"
245-
><img
246-
src="https://img.shields.io/badge/liberapay-donate-yellow.svg?style=for-the-badge"
247-
alt="Liberapay recurring donation button"
248-
/></a>
244+
<a href="https://www.buymeacoffee.com/phenax" target="_blank"><img src="https://cdn.buymeacoffee.com/buttons/default-orange.png" alt="Buy Me A Coffee" height="28" width="119" /></a>
245+
<a href="https://liberapay.com/phenax" target="_blank"><img src="https://img.shields.io/badge/liberapay-donate-yellow.svg?style=for-the-badge" alt="Liberapay recurring donation button" /></a>
249246
</p>
250247
</main>
251248
</body>

0 commit comments

Comments
 (0)