lbry-desktop/static/index-electron.html

71 lines
1.9 KiB
HTML
Raw Normal View History

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
2019-12-18 06:27:08 +01:00
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
2019-11-12 23:18:50 +01:00
<script src="ui.js" async></script>
<title>LBRY</title>
2020-01-20 20:12:36 +01:00
<link rel="preload" href="font/v1/300.woff" as="font" type="font/woff" />
<link rel="preload" href="font/v1/300i.woff" as="font" type="font/woff" />
<link rel="preload" href="font/v1/400.woff" as="font" type="font/woff" />
<link rel="preload" href="font/v1/400i.woff" as="font" type="font/woff" />
<link rel="preload" href="font/v1/700.woff" as="font" type="font/woff" />
<link rel="preload" href="font/v1/700i.woff" as="font" type="font/woff" />
<style>
@font-face {
font-family: 'Inter';
font-style: normal;
font-weight: 300;
font-display: swap;
src: url('font/v1/300.woff') format('woff');
}
@font-face {
font-family: 'Inter';
font-style: italic;
font-weight: 300;
font-display: swap;
src: url('font/v1/300i.woff') format('woff');
}
@font-face {
font-family: 'Inter';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url('font/v1/400.woff') format('woff');
}
@font-face {
font-family: 'Inter';
font-style: italic;
font-weight: 400;
font-display: swap;
src: url('font/v1/400i.woff') format('woff');
}
@font-face {
font-family: 'Inter';
font-style: normal;
font-weight: 700;
font-display: swap;
src: url('font/v1/700.woff') format('woff');
}
@font-face {
font-family: 'Inter';
font-style: italic;
font-weight: 700;
font-display: swap;
src: url('font/v1/700i.woff') format('woff');
}
</style>
</head>
<body>
<div id="app"></div>
</body>
</html>