-
Notifications
You must be signed in to change notification settings - Fork 0
/
paginaPrueba.html
75 lines (69 loc) · 2.39 KB
/
paginaPrueba.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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
<!doctype html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Bootstrap CSS -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
<title>REPORTE DE PRODUCTO</title>
</head>
<body style="background-color: lightseagreen;">
<div class="container-fluid container p-3 my-3 bg-dark text-white">
<div class="row">
<div class="col-12" style="text-align: center; ">
<h1>REPORTE DE PRODUCTO</h1>
</div>
</div>
</div>
<div class="container-fluid" style="background-color: rgb(255, 255, 255); ">
<div class="row justify-content-md-center">
<div>
<h3>Nombre del producto: "NombreProducto"</h3>
</div>
</div>
<div class="row justify-content-md-center">
<div>
<h3>El producto "NombreProducto" se puede elaborar optimamente en "TiempoProducto"</h3>
</div>
</div>
<div class="row justify-content-md-center">
<div class="col-md-auto">
<h2 style="text-decoration: underline tomato;">Listado de procedimientos</h2>
</div>
</div>
<div class="row justify-content-md-center">
<div class="col-md-auto">
<table class="table table-bordered table-striped text-center table-hover table-responsive"
style="text-align: center; width: 600px;">
<thead>
<tr class="table-dark">
<th>Linea</th>
<th>Movimiento</th>
<th>Segundo</th>
</tr>
</thead>
<tbody>
<tr>
<td class="table-info">Datos</td>
<td class="table-success">Datos</td>
<td class="table-success">Datos</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
<div class="container-fluid container p-3 my-3 bg-dark text-white">
<div class="row">
<div class="col-12" style="text-align: center; ">
<h1></h1>
</div>
</div>
</div>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/js/bootstrap.bundle.min.js"
integrity="sha384-MrcW6ZMFYlzcLA8Nl+NtUVF0sA7MsXsP1UyJoMp4YLEuNSfAP+JcXn/tWtIaxVXM"
crossorigin="anonymous"></script>
</body>
</html>