-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
26 lines (26 loc) · 834 Bytes
/
index.html
File metadata and controls
26 lines (26 loc) · 834 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
<!doctype html>
<html>
<head>
<link href="css/xterm.min.css" rel="stylesheet" type="text/css"/>
<link href="css/fullscreen.min.css" rel="stylesheet" type="text/css"/>
<link href="css/default_index.css" rel="stylesheet" type="text/css"/>
<script src="js/xterm.min.js"></script>
<script src="js/xterm-addon-fit.min.js"></script>
</head>
<body>
<div id="root">
<h2>Change Font Size</h2>
<h4>
FontSize:
<select id="selFont" onChange="fontSizeSelected()">
<option value=14>14</option>
<option value=18>18</option>
<option value=24>24</option>
</select>
</h4>
</div>
<div id="terminal"></div>
</head>
</body>
<script src="client.js"></script>
</html>