-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
25 lines (25 loc) · 927 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<title>Example Scala.js application</title>
<link rel = "stylesheet" type = "text/css" href = "style.css">
<meta http-equiv = "Content-Type" content = "text/html; charset=UTF-8" />
</head>
<body>
<div id = "LanguageSelector"></div>
<div id = "Circuit"></div>
<div id = "first line"></div>
<div id = "Graph1"></div>
<div id = "second line"></div>
<div id = "Graph2"></div>
<div id = "qna"></div>
<script type = "text/javascript" src = "buckboost-converter-opt.js"></script>
<script src = "https://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script>
<script>
iPES.BuckBoost.Diagrams().main(document.getElementById("Circuit"),
document.getElementById("Graph1"),
document.getElementById("Graph2"));
iPES.Webpage.LanguageSelector().main(document.getElementById("LanguageSelector"));
</script>
</body>
</html>