-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexample.html
More file actions
52 lines (39 loc) · 962 Bytes
/
example.html
File metadata and controls
52 lines (39 loc) · 962 Bytes
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
<!DOCTYPE html>
<html>
<head>
<title>termlib example</title>
<script language="JavaScript" type="text/javascript" src="util.js"></script>
<script language="JavaScript" type="text/javascript" src="main.js" defer></script>
<style type="text/css">
/* essential terminal styles */
.term {
font-family: courier,fixed,swiss,sans-serif;
font-size: 12px;
color: #33d011;
background: none;
}
.termReverse {
color: #111111;
background: #33d011;
}
/* other page styles */
body, html {
margin 0;
padding: 0;
position: relative;
}
body,p,a,td {
font-family: courier,fixed,swiss,sans-serif;
font-size: 12px;
color: #cccccc;
}
.lh15 {
line-height: 15px;
}
</style>
</head>
<body bgcolor="#222222" link="#77dd11" text="#cccccc" alink="#dddddd" vlink="#77dd11"
topmargin="0" bottommargin="0" leftmargin="0" rightmargin="0" marginheight="0" marginwidth="0">
<div id="termDiv"></div>
</body>
</html>