Skip to content

Commit 8563c8d

Browse files
committed
init!
1 parent 5c76076 commit 8563c8d

File tree

6 files changed

+79
-1
lines changed

6 files changed

+79
-1
lines changed

.gitignore

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

bulma.min.css

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

favicon.png

6.32 KB
Loading

index.html

Lines changed: 35 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,35 @@
1-
Hello World
1+
<!DOCTYPE html>
2+
<html>
3+
<head>
4+
<meta charset="utf-8">
5+
<meta name="viewport" content="width=device-width, initial-scale=1">
6+
<title>codegenic</title>
7+
<link rel="stylesheet" href="bulma.min.css">
8+
<link rel="stylesheet" href="style.css">
9+
<link rel="icon" type="image/png" href="favicon.png" />
10+
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Space+Mono">
11+
</head>
12+
<body>
13+
<section class="main">
14+
<div class="container">
15+
<img src="logo.svg" class="logo">
16+
17+
<p class="slogan">
18+
coding is our cardio
19+
</p>
20+
21+
<p class="description">
22+
At Codegenic, we're all about delivering cutting-edge software solutions for your web and crypto business. Our highly skilled team of engineers is dedicated to staying at the forefront of research and implementation to bring innovative ideas to life.
23+
We've had the privilege of working with top clients like Binance, Chainlink, and Trust Wallet, and we're committed to delivering the same level of excellence to every project we take on. We believe in the power of collaboration and teamwork, and we're here to work with you every step of the way to ensure that your project is a success.
24+
So if you're looking for a reliable partner to help bring your web and crypto ideas to life, look no further than Codegenic. We're here to help you innovate and succeed.
25+
</p>
26+
27+
<p class="contact">
28+
Emails are so yesterday - find us on Telegram for all your web3 and software needs!
29+
<a href="https://t.me/eoozs" target="_blank">@eoozs</a>
30+
</p>
31+
32+
</div>
33+
</section>
34+
</body>
35+
</html>

logo.svg

Lines changed: 5 additions & 0 deletions
Loading

style.css

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
html,body {
2+
margin: 0;
3+
height: 100%;
4+
background-color: #000000;
5+
font-family: 'Space Mono'
6+
}
7+
8+
section.main {
9+
margin-top: 64px;
10+
padding: 32px;
11+
}
12+
13+
section.main p {
14+
font-size: 130%;
15+
}
16+
17+
p.slogan {
18+
color: #0F6292;
19+
}
20+
21+
p.description {
22+
color: #16FF00;
23+
margin-top: 64px;
24+
}
25+
26+
p.contact {
27+
color: #FFED00;
28+
margin-top: 128px;
29+
}
30+
31+
.logo {
32+
max-width: 312px;
33+
}
34+
35+
a {
36+
color: white;
37+
}

0 commit comments

Comments
 (0)