Skip to content

Commit 6b69492

Browse files
initial
1 parent d9ff5be commit 6b69492

File tree

2 files changed

+59
-0
lines changed

2 files changed

+59
-0
lines changed

CNAME

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
dariuslabs.com

index.html

Lines changed: 58 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,58 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
4+
<head>
5+
<meta charset="UTF-8">
6+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
7+
<title>Darius Labs</title>
8+
<style>
9+
body {
10+
margin: 0;
11+
padding: 0;
12+
font-family: 'Arial', sans-serif;
13+
background-color: black;
14+
color: white;
15+
display: flex;
16+
flex-direction: column;
17+
align-items: center;
18+
justify-content: center;
19+
height: 100vh;
20+
}
21+
22+
h1 {
23+
font-size: 4em;
24+
margin: 0;
25+
background: linear-gradient(to right, #ffba7c, #2727c8);
26+
/* Gradient colors */
27+
-webkit-background-clip: text;
28+
/* for Webkit browsers */
29+
background-clip: text;
30+
color: transparent;
31+
}
32+
33+
34+
footer {
35+
position: absolute;
36+
bottom: 20px;
37+
font-size: 0.8em;
38+
}
39+
40+
a {
41+
color: #8d6da9;
42+
text-decoration: none;
43+
}
44+
45+
a:hover {
46+
text-decoration: underline;
47+
}
48+
</style>
49+
</head>
50+
51+
<body>
52+
<h1>Darius Labs</h1>
53+
<footer>
54+
<a href="mailto:[email protected]">© 2024 Darius Labs Inc.</a>
55+
</footer>
56+
</body>
57+
58+
</html>

0 commit comments

Comments
 (0)