-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
55 lines (54 loc) · 2.16 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
<!DOCTYPE html>
<html>
<head>
<!--Meta-->
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimal-ui">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<!--Titulo-->
<title>Codigo de Pago - Yanbal - Venezuela</title>
<!--Icono-->
<link rel="icon" href="favicon.ico" sizes="16x16">
<!--Scrips Principales-->
<script src="js/jquery.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<!--Estilos Principales-->
<link href="css/bootstrap.min.css" rel="stylesheet" >
<link href="css/font-awesome.min.css" rel="stylesheet">
<!--Estilos Personalizados-->
<link href="css/CodeOfPaid.css" rel="stylesheet">
</head>
<body>
<!--Barra de Navegacion-->
<nav class="navbar navbar-expand-xl navbar-dark justify-content-between" style="background-color: #ff6600">
<!--Titulo Principal-->
<a class="navbar-brand" href="index.html">
<img src="web_hi_res_512.png" width="40" height="40" class="d-inline-block align-top" alt="">Codigo de Pago</a>
<!--Boton Desplegable-->
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbars" aria-controls="navbarsExample05" aria-expanded="false" aria-label="Toggle navigation"><span class="navbar-toggler-icon"></span></button>
<!--Menu Desplegable-->
<div class="collapse navbar-collapse" id="navbars">
<nav class="navbar-nav mr-auto">
<a class="navbar-brand" href="Acerca_de.html">Acerca de</a>
</nav>
</div>
</nav>
<!--Contenido-->
<div class="card">
<div class="card-body">
<img src="logo.png" width="120" height="120">
<form id="CDP">
<p>ID del Cliente</p>
<input type="number" id="IDC" value="0" maxlength="8" required/><br/>
<p>Resultado</p>
<input type="number" id="Resultado_CDP" value="0" disabled/><br/>
<input type="button" value="Calcular" style="background-color: #ff6600" onclick="Calcular_CDP()"/>
<input type="button" value="Limpiar" style="background-color: #ff6600" onclick="Limpiar_CDP()">
<p id="Error"></p>
</form>
</div>
</div>
<!--Scripts-->
<script src="js/CodeOfPaid.js"></script>
</body>
</html>