Files

24 lines
522 B
HTML
Raw Permalink Normal View History

2019-05-10 22:57:27 -07:00
<!doctype html>
<html>
<head>
<title>xterm.js integration test fixture</title>
2019-05-31 19:34:10 -07:00
<link rel="stylesheet" href="/xterm.css" />
2025-12-26 10:46:27 -08:00
<style>
body {
font-family: helvetica, sans-serif, arial;
font-size: 1em;
color: #111;
}
#terminal-container {
height: 60%;
margin: 0 auto;
padding: 2px;
}
</style>
2019-05-10 22:57:27 -07:00
</head>
2025-12-26 10:38:39 -08:00
<body id="test">
2019-05-10 22:57:27 -07:00
<div id="terminal-container"></div>
2023-08-27 08:44:24 -07:00
<script src="/dist/client-bundle.js" defer></script>
2019-05-10 22:57:27 -07:00
</body>
</html>