-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
34 lines (34 loc) · 1.2 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Proyecto de Investigación de Operaciones - Transporte</title>
<link rel="stylesheet" href="purecss.css">
<link rel="stylesheet" href="styles.css">
<script type="text/javascript" src="script.js"></script>
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body>
<div class="pure-g">
<div class="pure-u-1">
<header>
<p>TRANSPORTE - CÁLCULO DE COSTO MÍNIMO</p>
</header>
</div>
<div class="pure-u-2-24"></div>
<form class="pure-form pure-u-20-24" id="mainForm">
<fieldset>
<input type="text" placeholder="Filas" id="inputFilas">
<input type="text" placeholder="Columnas" id="inputColumnas">
<button type="button" onclick="generarTabla()" class="pure-button pure-button-primary">Generar</button>
</fieldset>
</form>
<!-- <div class="pure-u-1">
<footer>
<p>AGUIRRE - CATALÁN - CUYO</p>
</footer>
</div>-->
</div>
<script type="text/javascript" src="script2.js"></script>
</body>
</html>