Skip to content

Commit 23187a1

Browse files
committed
Simple html page
0 parents  commit 23187a1

File tree

1 file changed

+117
-0
lines changed

1 file changed

+117
-0
lines changed

index.html

Lines changed: 117 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,117 @@
1+
<!DOCTYPE html>
2+
<html>
3+
<head>
4+
<meta charSet="utf-8"/>
5+
<meta http-equiv="x-ua-compatible" content="ie=edge"/>
6+
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"/>
7+
<title>is-a.dev | Free domain registration for software devs</title>
8+
<style>
9+
html, body {
10+
--header-bg: #0f0c19;
11+
--accent: #4e3aA3;
12+
--body-fg: #2f2c39;
13+
14+
margin: 0;
15+
padding: 0;
16+
background-color: #efefef;
17+
color: var(--body-fg);
18+
19+
font-family: Arial, Helvetica, sans-serif;
20+
}
21+
body * { box-sizing: border-box; line-height: 1.5em; }
22+
23+
a, a:visited { color: var(--accent); }
24+
a:hover { opacity: 0.8; }
25+
</style>
26+
</head>
27+
<body>
28+
<style>
29+
header {
30+
display: flex;
31+
justify-content: center;
32+
align-items: center;
33+
flex-direction: column;
34+
height: 200px;
35+
background-color: var(--header-bg);
36+
color: #d8dee9;
37+
}
38+
39+
.domain {
40+
display: flex;
41+
justify-content: flex-start;
42+
letter-spacing: 1px;
43+
font-size: 1.5em;
44+
}
45+
.domain-name {
46+
position: relative;
47+
}
48+
49+
@keyframes domain-fade {
50+
0% { opacity: 0; }
51+
12% { opacity: 1; }
52+
25% { opacity: 0; }
53+
}
54+
55+
.domain .name {
56+
padding: 0 .3em 3px;
57+
transform: translateY(-1px);
58+
background-color: #fff;
59+
color: var(--accent);
60+
font-weight: bold;
61+
}
62+
63+
.domain-name div {
64+
opacity: 0;
65+
--duration: 4s;
66+
animation: domain-fade var(--duration) ease-in-out infinite;
67+
}
68+
.domain-name div:nth-child(1) { animation-delay: 0s; }
69+
.domain-name div:nth-child(2) { animation-delay: 1s; }
70+
.domain-name div:nth-child(3) { animation-delay: 2s; }
71+
.domain-name div:nth-child(4) { animation-delay: 3s; }
72+
</style>
73+
<header>
74+
<div class="domain">
75+
<!--<div class="domain-name">-->
76+
<!--<div>danny-devito</div>-->
77+
<!--<div>ryan-reynolds</div>-->
78+
<!--<div></div>-->
79+
<!--<div></div>-->
80+
<!--</div>-->
81+
<div class="name">{your-name}</div>
82+
.is-a.dev
83+
</div>
84+
</header>
85+
86+
<style>
87+
main {
88+
padding: 1em;
89+
margin: 1em auto;
90+
max-width: 1000px;
91+
}
92+
93+
h1 {
94+
font-size: 2em;
95+
margin: 0;
96+
padding: 1em 0 0.2em 0;
97+
border-bottom: 1px solid #ddd;
98+
}
99+
</style>
100+
<main>
101+
<h1>is-a-dev</h1>
102+
<p>
103+
is-a-dev is a service that allows developers to get a sweet-looking `.is-a.dev` domain for their personal websites.
104+
<br />
105+
To register your own domain, go to <a href="https://github.com/is-a-dev/register">is-a-dev repository</a> and follow the instructions.
106+
</p>
107+
108+
<h2>Donations</h2>
109+
<p>This project is a free service for developers and will stay that way. Any donations will be greatly appreciated!</p>
110+
111+
<p>
112+
<a href="https://www.buymeacoffee.com/phenax" target="_blank"><img src="https://img.shields.io/badge/buy%20me%20a%20coffee-donate-blue.svg?style=flat-square" alt="Buy Me A Coffee donate button" /></a>
113+
<a href="https://liberapay.com/phenax" target="_blank"><img src="https://img.shields.io/badge/liberapay-donate-yellow.svg?style=flat-square" alt="Liberapay recurring donation button" /></a>
114+
</p>
115+
</main>
116+
</body>
117+
</html

0 commit comments

Comments
 (0)