-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
40 lines (28 loc) · 1.21 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
<!DOCTYPE html>
<head>
<script src="https://d3js.org/d3.v5.min.js"></script>
<script src="https://unpkg.com/[email protected]/viz.js" type="javascript/worker"></script>
<script src="https://unpkg.com/[email protected]/viz.js" type="application/javascript/"></script>
<script src="https://unpkg.com/[email protected]/build/d3-graphviz.js"></script>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<script type="text/javascript" src="src/automata.js"></script>
<script type="text/javascript" src="lib/p5.js"></script>
<link rel="stylesheet" type="text/css" href="inicio.css">
<header><h1>LENGUAJES FORMALES Y AUTOMATAS</h1></header>
<title>Pricipal</title>
</head>
<body>
<div class="tablaestruc">
<div class="cargar">
<input class="seleccionar" type="file" id="jsonFile" name="jsonFile" onchange="datos()">
</div>
<div class="cuadrado">
<input id="entrada">
<button class="aceptar" onClick="init()">Aceptar</button>
</div>
</div>
<div id="results"></div>
<div id="graph">
</div>
</body>
</html>