-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
46 lines (46 loc) · 1.39 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Explain Expr</title>
<link rel="stylesheet" href="style.css" />
</head>
<header>
<div class="header">
<img
width="100px"
src="https://raw.githubusercontent.com/muktihari/expr/master/icon.svg"
alt="Logo"
/>
</div>
</header>
<body>
<div class="container">
<div class="input-container">
<input
id="explain-input"
type="text"
class="input-text"
id="textInput"
placeholder="Enter math or boolean expression"
/>
</div>
<div class="input-container">
<button id="explain-button" class="btn btn-explain">Explain</button>
<button id="evaluate-button" class="btn btn-evaluate">=</button>
</div>
<div class="result" id="result"></div>
<div class="footer">
<a href="https://github.com/muktihari/expr" target="_blank">
<img src="github-icon.svg" height="10px" alt="GitHub Logo" /> expr
</a>
<a href="https://github.com/muktihari/explainexpr" target="_blank">
<img src="github-icon.svg" height="10px" alt="GitHub Logo" />
explainexpr
</a>
</div>
</div>
</body>
<script src="wasm_exec.js"></script>
<script src="script.js"></script>
</html>