xp-consoles/jsconsole.html

23 lines
868 B
HTML

<!DOCTYPE html>
<html>
<head>
<title>JavaScript Console</title>
<meta charset="utf-8" />
<link rel="stylesheet" type="text/css" href="console.css" />
<link rel="icon" type="image/x-icon" href="jsconsole.ico" />
<link rel="shortcut icon" type="image/x-icon" href="jsconsole.ico" />
</head>
<body>
<div class="hslice" id="slice">
<div class="entry-title">JavaScript Console</div>
<a rel="entry-content" href="./jsconsole.html"></a>
</div>
<textarea id="input" placeholder="Type some JavaScript to run and press Shift+Enter"></textarea>
<div id="output"></div>
<div class="buttons">
<input type="button" id="runbutton" value="run" />
<input type="button" id="clearbutton" value="clear" />
</div>
<script type="text/javascript" language="javascript" src="console.js"></script>
</body>
</html>