mirror of
https://github.com/zyqunix/tools.git
synced 2025-07-06 06:20:30 +02:00
js evaluator
This commit is contained in:
parent
4fb79a1d68
commit
776d988872
3 changed files with 86 additions and 0 deletions
20
js/index.html
Normal file
20
js/index.html
Normal file
|
@ -0,0 +1,20 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>JavaScript Evaluator</title>
|
||||
<link rel="shortcut icon" href="https://rimgo.pussthecat.org/RFbdMMB.png" type="image/x-icon">
|
||||
<link rel="stylesheet" href="style.css">
|
||||
</head>
|
||||
<body>
|
||||
<div class="card shadow">
|
||||
<h1>JavaScript Evaluator</h1>
|
||||
<textarea id="input" type="text" placeholder="Enter code..." rows="10" columns="10"></textarea>
|
||||
<button id="evaluate">Evaluate</button>
|
||||
<pre id="output" placeholder="Output" rows="5">Output</pre>
|
||||
</div>
|
||||
|
||||
<script src="index.js"></script>
|
||||
</body>
|
||||
</html>
|
Loading…
Add table
Add a link
Reference in a new issue