-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
40 lines (37 loc) · 1.81 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>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- CSS only -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/css/bootstrap.min.css" integrity="sha384-9aIt2nRpC12Uk9gS9baDl411NQApFmC26EwAOH8WgZl5MYYxFfc+NcPb1dKGj7Sk" crossorigin="anonymous">
<link rel="stylesheet" href="chart/chart.css">
<link rel="stylesheet" href="styles.css">
<title>OLC2 Ejemplos</title>
</head>
<body>
<div align='center'>
<h3>Entradas</h3>
<textarea id="entrada" name="entrada" placeholder="Ingrese la entrada" rows="3" cols="50" class="txtArea"></textarea>
<br/>
<button type="button" class="btn btn-primary" class="myButton" onclick="parseExample()">Ejecutar</button>
<br/>
<br/>
<br/>
<h3>Salida</h3>
<textarea id="salida" name="salida" rows="3" cols="50" class="txtArea2"></textarea>
</div>
<script src="main.js"></script>
<script src="./Ejemplo_1/ejemplo1.js"></script>
<script src="./Ejemplo_2/ejemplo2.js"></script>
<script src="./Ejemplo_3/ejemplo3.js"></script>
<script src="./Ejemplo_4/ejemplo4.js"></script>
<script src="./Ejemplo_5/ejemplo5.js"></script>
<script src="./Ejemplo_6/ejemplo6.js"></script>
<!-- load the d3.js library -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/d3/3.5.17/d3.min.js"></script>
<script src="chart/chart.js"></script>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
<link href="https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@1,500&display=swap" rel="stylesheet">
</body>
</html>