mirror of
				https://git.proxmox.com/git/mirror_xterm.js
				synced 2025-10-31 16:05:44 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			25 lines
		
	
	
		
			835 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			25 lines
		
	
	
		
			835 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
| <!doctype html>
 | |
| <html>
 | |
|     <head>
 | |
|         <title>xterm.js demo</title>
 | |
|         <link rel="stylesheet" href="../src/xterm.css" />
 | |
|         <link rel="stylesheet" href="../addons/fullscreen/fullscreen.css" />
 | |
|         <link rel="stylesheet" href="style.css" />
 | |
|         <script src="../src/xterm.js" ></script>
 | |
|         <script src="../addons/attach/attach.js" ></script>
 | |
|         <script src="../addons/fit/fit.js" ></script>
 | |
|         <script src="../addons/fullscreen/fullscreen.js" ></script>
 | |
|     </head>
 | |
|     <body>
 | |
|         <h1>
 | |
|             xterm.js: xterm, in the browser
 | |
|         </h1>
 | |
|         <div id="terminal-container"></div>
 | |
|         <div>
 | |
|           <h2>Options</h2>
 | |
|           <label><input type="checkbox" id="option-cursor-blink"> cursorBlink</label>
 | |
|         </div>
 | |
|         <script src="main.js" defer ></script>
 | |
|     </body>
 | |
| </html>
 | 
