-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
68 lines (65 loc) · 3.7 KB
/
Copy pathindex.html
File metadata and controls
68 lines (65 loc) · 3.7 KB
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/png" href="/project_favicon.png" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>IDS Connector GUI</title>
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700&display=swap" />
<link href="https://db.onlinewebfonts.com/c/05e476e067ffef74ca5686f229c40a63?family=PingFang+SC+Regular" rel="stylesheet">
<style>
/* PingFang SC Regular */
@font-face {
font-family: "PingFang SC";
src: url("https://db.onlinewebfonts.com/t/05e476e067ffef74ca5686f229c40a63.eot");
src: url("https://db.onlinewebfonts.com/t/05e476e067ffef74ca5686f229c40a63.eot?#iefix")format("embedded-opentype"),
url("https://db.onlinewebfonts.com/t/05e476e067ffef74ca5686f229c40a63.woff2")format("woff2"),
url("https://db.onlinewebfonts.com/t/05e476e067ffef74ca5686f229c40a63.woff")format("woff"),
url("https://db.onlinewebfonts.com/t/05e476e067ffef74ca5686f229c40a63.ttf")format("truetype"),
url("https://db.onlinewebfonts.com/t/05e476e067ffef74ca5686f229c40a63.svg#PingFang SC Regular")format("svg");
font-weight: 400;
font-style: normal;
}
/* PingFang SC Light */
@font-face {
font-family: "PingFang SC";
src: url("https://db.onlinewebfonts.com/t/6e0b4eb6c896d3a8aec295e3a07c75fb.eot");
src: url("https://db.onlinewebfonts.com/t/6e0b4eb6c896d3a8aec295e3a07c75fb.eot?#iefix")format("embedded-opentype"),
url("https://db.onlinewebfonts.com/t/6e0b4eb6c896d3a8aec295e3a07c75fb.woff2")format("woff2"),
url("https://db.onlinewebfonts.com/t/6e0b4eb6c896d3a8aec295e3a07c75fb.woff")format("woff"),
url("https://db.onlinewebfonts.com/t/6e0b4eb6c896d3a8aec295e3a07c75fb.ttf")format("truetype"),
url("https://db.onlinewebfonts.com/t/6e0b4eb6c896d3a8aec295e3a07c75fb.svg#PingFang SC Light")format("svg");
font-weight: 300;
font-style: normal;
}
/* PingFang SC Medium */
@font-face {
font-family: "PingFang SC";
src: url("https://db.onlinewebfonts.com/t/45fae4c9b03fef41b904ed58eaedc1b9.eot");
src: url("https://db.onlinewebfonts.com/t/45fae4c9b03fef41b904ed58eaedc1b9.eot?#iefix")format("embedded-opentype"),
url("https://db.onlinewebfonts.com/t/45fae4c9b03fef41b904ed58eaedc1b9.woff2")format("woff2"),
url("https://db.onlinewebfonts.com/t/45fae4c9b03fef41b904ed58eaedc1b9.woff")format("woff"),
url("https://db.onlinewebfonts.com/t/45fae4c9b03fef41b904ed58eaedc1b9.ttf")format("truetype"),
url("https://db.onlinewebfonts.com/t/45fae4c9b03fef41b904ed58eaedc1b9.svg#PingFang SC Medium")format("svg");
font-weight: 500;
font-style: normal;
}
/* PingFang SC Bold */
@font-face {
font-family: "PingFang SC";
src: url("https://db.onlinewebfonts.com/t/0da033eb5f82c5663a1eb59970726ba0.eot");
src: url("https://db.onlinewebfonts.com/t/0da033eb5f82c5663a1eb59970726ba0.eot?#iefix")format("embedded-opentype"),
url("https://db.onlinewebfonts.com/t/0da033eb5f82c5663a1eb59970726ba0.woff2")format("woff2"),
url("https://db.onlinewebfonts.com/t/0da033eb5f82c5663a1eb59970726ba0.woff")format("woff"),
url("https://db.onlinewebfonts.com/t/0da033eb5f82c5663a1eb59970726ba0.ttf")format("truetype"),
url("https://db.onlinewebfonts.com/t/0da033eb5f82c5663a1eb59970726ba0.svg#PingFang SC Bold")format("svg");
font-weight: 700;
font-style: normal;
}
</style>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>