-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
46 lines (40 loc) · 1.7 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width,initial-scale=1,maximum-scale=1,user-scalable=no">
<link rel="shortcut icon" href="/public/logo.png">
<title>ethlibrary</title>
<link href="//unpkg.com/tailwindcss@^2/dist/tailwind.min.css" rel="stylesheet">
<style>
body {
font-family: Consolas,Courier,PingFang SC,PingFang TC,Microsoft YaHei,Source Han Sans SC,Noto Sans CJK SC,Source Han Sans CN,Noto Sans SC,Source Han Sans TC,Noto Sans CJK TC,SimSun,monospace;
}
</style>
</head>
<body class="max-w-3xl mx-auto">
<header class="flex justify-between items-center border-b border-gray-200 py-3 md:justify-start md:space-x-10">
<a href="#" class="flex justify-start items-center lg:w-0 lg:flex-1">
<img class="h-8 w-auto sm:h-10" src="/public/logo.png" alt="logo">
<span>ethlibrary</span>
</a>
<div class="category flex ml:auto items-center">
<a href="#" class="text-blue-700 mx-2">about</a> /
<a href="#" class="text-blue-700 mx-2">projects</a> /
<a href="https://github.com/ethlibrary" class="mx-2">
<img class="h-4 w-auto sm:h-5" src="/public/github.svg" alt="github">
</a>
</div>
</header>
<main style="height: 80vh">
<article class="flex items-center justify-center whitespace-pre-line">
ethlibrary
The program is a collection of resource for working with the Ethereum blockchain, including knownledges, tools, and reference materials.
</article>
</main>
<footer class="py-3 border-t text-center text-gray-300">
@copyright 2021, ethlibrary.io
</footer>
</body>
</html>