25 lines
		
	
	
		
			722 B
		
	
	
	
		
			HTML
		
	
	
	
			
		
		
	
	
			25 lines
		
	
	
		
			722 B
		
	
	
	
		
			HTML
		
	
	
	
<!DOCTYPE html>
 | 
						|
<html lang="en">
 | 
						|
  <head>
 | 
						|
    <meta charset="utf-8" />
 | 
						|
    <title>Fast Sandbox</title>
 | 
						|
    <link
 | 
						|
      rel="stylesheet"
 | 
						|
      href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/css/bootstrap.min.css"
 | 
						|
      integrity="sha384-9aIt2nRpC12Uk9gS9baDl411NQApFmC26EwAOH8WgZl5MYYxFfc+NcPb1dKGj7Sk"
 | 
						|
      crossorigin="anonymous"
 | 
						|
    />
 | 
						|
    <link rel="stylesheet" href="/css/app.css" />
 | 
						|
    <script src="/js/app.js" async defer></script>
 | 
						|
  </head>
 | 
						|
  <body>
 | 
						|
    <div id="header">
 | 
						|
      <button type="button" class="btn btn-success" id="runButton">Run</button>
 | 
						|
    </div>
 | 
						|
    <div id="app">
 | 
						|
      <div id="editor" class="column"></div>
 | 
						|
      <div id="terminal" class="column"></div>
 | 
						|
    </div>
 | 
						|
  </body>
 | 
						|
</html>
 |