mirror of
https://github.com/demostf/demo.js
synced 2026-06-04 00:54:14 +02:00
28 lines
356 B
HTML
28 lines
356 B
HTML
<html>
|
|
<head>
|
|
<script src="browser.js"></script>
|
|
<style>
|
|
textarea {
|
|
width: 100%;
|
|
height: 200px;
|
|
}
|
|
|
|
#out {
|
|
height: 500px;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<input type="file" id="fileinput" />
|
|
|
|
<p>Demo header</p>
|
|
<textarea id="head">
|
|
|
|
</textarea>
|
|
|
|
<p>Demo summary</p>
|
|
<textarea id="out">
|
|
|
|
</textarea>
|
|
</body>
|
|
</html>
|