-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
56 lines (47 loc) · 1.33 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
47
48
49
50
51
52
53
54
55
56
<!DOCTYPE html>
<html>
<head>
<title>tio</title>
<link rel="icon" href="tio.png">
<meta http-equiv="Refresh" content="0; url='https://github.com/tio/tio'" />
<!-- Global Site Tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-106890056-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-106890056-1');
</script>
<style>
a:link {
color: darkgray;
background-color: transparent;
text-decoration: none;
}
a:visited {
color: darkgray;
background-color: transparent;
text-decoration: none;
}
a:hover {
color: darkgray;
background-color: transparent;
text-decoration: none;
}
a:active {
color: yellow;
background-color: transparent;
text-decoration: underline;
}
</style>
</head>
<body style="background-color:#202124">
<img src="tio.png">
<p style="font-family:Arial;color:gray">
A simple serial device tool which features a straightforward command-line
and configuration file interface to easily connect to TTY devices for basic
I/O operations.
</p>
<p style="font-family:Arial;color:gray">Visit <a href="https://github.com/tio/tio">Github</a> for more details</p>
</body>
</html>