Add files via upload
This commit is contained in:
parent
c07943958e
commit
c0e488104a
3
README-teminal.txt
Normal file
3
README-teminal.txt
Normal file
|
@ -0,0 +1,3 @@
|
|||
A Pen created at CodePen.io. You can find this one at https://codepen.io/AndrewBarfield/pen/qEqWMq.
|
||||
|
||||
A console for the Web written completely in JavaScript. The console supports Web versions of Linux commands.
|
13
license-terminal.txt
Normal file
13
license-terminal.txt
Normal file
|
@ -0,0 +1,13 @@
|
|||
|
||||
|
||||
<!--
|
||||
Copyright (c) 2019 by Andrew M Barfield (https://codepen.io/AndrewBarfield/pen/qEqWMq)
|
||||
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||||
-->
|
||||
|
60
terminal.html
Normal file
60
terminal.html
Normal file
|
@ -0,0 +1,60 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en" >
|
||||
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<title>HTML5 Web Terminal</title>
|
||||
|
||||
|
||||
|
||||
<link rel="stylesheet" href="css/style.css">
|
||||
|
||||
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8" />
|
||||
<meta http-equiv="X-UA-Compatible" content="chrome=1" />
|
||||
<title>HTML5 Web Terminal</title>
|
||||
<link href="https://fonts.googleapis.com/css?family=Inconsolata"
|
||||
rel="stylesheet" type="text/css" />
|
||||
</head>
|
||||
<body>
|
||||
<div id="container">
|
||||
<output></output>
|
||||
<div id="input-line" class="input-line">
|
||||
<div class="prompt"></div><div><input class="cmdline" autofocus /></div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!--<script src="http://www.codehelper.io/api/ips/?js"></script>-->
|
||||
<script src="https://code.jquery.com/jquery-2.1.1.min.js"></script>
|
||||
<script src="js/terminal.js"></script>
|
||||
|
||||
<div class="clock-container">
|
||||
<svg viewBox="0 0 100 100">
|
||||
<circle cx="50" cy="50" r="45"/>
|
||||
<g>
|
||||
<rect class="hour" x="47.5" y="12.5" width="5" height="40" rx="2.5" ry="2.55" />
|
||||
<rect class="min" x="48.5" y="12.5" width="3" height="40" rx="2" ry="2"/>
|
||||
<line class="sec" x1="50" y1="50" x2="50" y2="16" />
|
||||
</g>
|
||||
</svg>
|
||||
</div>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
|
||||
|
||||
|
||||
<script src="js/index.js"></script>
|
||||
|
||||
|
||||
|
||||
|
||||
</body>
|
||||
|
||||
</html>
|
Loading…
Reference in a new issue