forked from logotype/fixparser
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
35 lines (35 loc) · 1.59 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, minimum-scale=1,initial-scale=1" />
<meta name="description" content="FIX Parser, ECMAScript framework for working with FIX protocol messages." />
<title>FIX Parser</title>
<link rel="preload" href="dashboard/fonts/ProximaNova-Reg-webfont.woff2" as="font" type="font/woff2" crossorigin>
<link rel="preload" href="dashboard/fonts/ProximaNova-Light-webfont.woff2" as="font" type="font/woff2" crossorigin>
<link href="dashboard/dashboard.css" rel="stylesheet">
<style>
@font-face {
font-family: 'ProximaNova';
src: url('dashboard/fonts/ProximaNova-Light-webfont.woff2') format('woff2'), url('dashboard/fonts/ProximaNova-Light-webfont.woff') format('woff');
font-weight: 300;
font-style: normal;
}
@font-face {
font-family: 'ProximaNova';
src: url('dashboard/fonts/ProximaNova-Reg-webfont.woff2') format('woff2'), url('dashboard/fonts/ProximaNova-Reg-webfont.woff') format('woff');
font-weight: 400;
font-style: normal;
}
@font-face {
font-family: 'ProximaNova';
src: url('dashboard/fonts/ProximaNova-Sbold-webfont.woff2') format('woff2'), url('dashboard/fonts/ProximaNova-Sbold-webfont.woff') format('woff');
font-weight: 700;
font-style: normal;
font-display: swap;
}
</style>
</head>
<body>
<script type="text/javascript" src="dashboard/dashboard.js"></script></body>
</html>