-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
161 lines (139 loc) · 4.61 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
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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
<!--
MIT License
Copyright (c) 2024 EducatedSuddenBucket
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
-->
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>is-truly-a.pro | Free Subdomains</title>
<meta name="description" content="A service to allow anyone to get free .is-truly-a.pro subdomains">
<meta property="og:image" content="https://is-truly-a.pro/assets/logo.png">
<meta property="og:type" content="website">
<meta property="og:title" content="is-truly-a.pro | Free Subdomains">
<meta property="og:description" content="A service to allow anyone to get free .is-truly-a.pro subdomains">
<link rel="icon" href="assets/logo.png" type="image/png">
<style>
@font-face {
font-family: 'Spleen';
src: url('./assets/font.woff') format('woff');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: '0xProto';
src: url('./assets/font2.woff') format('woff');
font-weight: normal;
font-style: normal;
}
:root {
--primary-color: #6495ed;
--text-color: #ffffff;
--body-bg: #1a2238;
--card-bg: #1f1f1f;
--link-color: #b0c4de;
--link-hover: #add8e6;
}
body {
font-family: '0xProto', sans-serif;
margin: 0;
padding: 0;
background-color: var(--body-bg);
color: var(--text-color);
}
.container {
max-width: 1200px;
margin: 0 auto;
padding: 40px 20px;
}
.main-heading {
color: var(--primary-color);
font-size: 3rem;
text-align: center;
margin: 20px 0 10px;
font-family: 'Spleen', sans-serif;
}
.sub-heading {
font-size: 1.2rem;
text-align: center;
color: var(--text-color);
margin: 0 0 40px;
}
.card {
background-color: var(--card-bg);
border-radius: 10px;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
padding: 30px;
margin-bottom: 30px;
}
.card h2 {
color: var(--primary-color);
font-size: 1.8rem;
margin-top: 0;
}
.card p {
font-size: 1.1rem;
line-height: 1.6;
}
.card a {
color: var(--link-color);
text-decoration: none;
transition: color 0.3s;
}
.card a:hover {
color: var(--link-hover);
}
footer {
background-color: var(--header-bg);
color: var(--text-color);
text-align: center;
padding: 20px 0;
font-size: 0.9rem;
}
footer a {
color: var(--link-color);
text-decoration: none;
transition: color 0.3s;
}
footer a:hover {
color: var(--link-hover);
}
</style>
</head>
<body>
<div class="container">
<h1 class="main-heading">is-truly-a.pro</h1>
<p class="sub-heading">Free subdomains for everyone</p>
<main>
<div class="card">
<h2>About the Service</h2>
<p>is-truly-a.pro is a service that allows anyone to get free and easy-to-remember subdomains. With a simple registration process, you can claim your own unique subdomain under the .is-truly-a.pro domain.</p>
</div>
<div class="card">
<h2>How to Register</h2>
<p>To register your own subdomain, visit the <a href="https://github.com/is-truly-a-pro/register">is-truly-a.pro registration repo</a> and follow the instructions.</p>
</div>
<div class="card">
<h2>Report Abuse</h2>
<p>If you believe a subdomain is being used inappropriately, please <a href="https://github.com/is-truly-a-pro/register/issues">report the issue</a> so we can investigate and take appropriate action.</p>
</div>
</main>
</div>
</body>
</html>