-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
39 lines (31 loc) · 1.11 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
<!DOCTYPE html>
<html>
<head>
<title>main</title>
<meta charset="utf-8"/>
<link rel="stylesheet"/>
</head>
<body>
<h>ctrl+v시 완성된 식이 클립보드에 복사됨</h>
<br>
<br>
<h style="font-weight: bold;">창호공제</h>
<form class="js-form">
<input type="text" placeholder="수식을 입력" class="js-mathExp"/>
</form>
<h4 class="js-err" style="color: red;"></h4>
<p class="js-oldMathExp"></p>
<p class="js-newMathExp"></p>
<h4 class="js-result"></h4>
<h style="font-weight: bold;">자동산식</h>
<form class="js-form2">
<input type="text" placeholder="수식을 입력" class="js-mathExp2"/>
</form>
<h4 class="js-err2" style="color: red;"></h4>
<p class="js-oldMathExp2"></p>
<p class="js-newMathExp2"></p>
<h4 class="js-result2"></h4>
<script src="src/js/cal-subWindow.js"></script>
<script src="src/js/cal-auto.js"></script>
</body>
</html>