-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
39 lines (37 loc) · 1.14 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Fin, Natural Language Processor written in JavaScript</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
@import url('https://fonts.googleapis.com/css?family=Slabo+27px');
body {
text-align: center
}
img {
display: block;
margin: 0 auto;
width:200px;
margin-top:25vh;
margin-bottom:10vh;
}
a {
font-family: 'Slabo 27px', serif;
display: inline-block;
font-size:17px;
color:#212121;
text-decoration: none;
}
a:hover {
color:#961a3b;
}
</style>
</head>
<body>
<img src="./logo.svg" alt="logo">
<a href="http://docs.fin.run">Docs</a>
<a href="http://demo.fin.run">Demo</a>
<a href="https://github.com/FinNLP/">GitHub</a>
</body>
</html>