-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
28 lines (27 loc) · 1.13 KB
/
Copy pathindex.html
File metadata and controls
28 lines (27 loc) · 1.13 KB
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
<html>
<head>
<title>Testing API NETWORK-RIM-UG</title>
<link rel="stylesheet" href="index.css">
</head>
<body>
<div id="spinner" style="display: none;" >
<div class="animacionSpinner" ></div>
</div>
<div class="flex column centerJustify centerAligitems">
<h2 class="text" >¡Bienvenido a TESTING API NETWORK-RIM-UG!</h2>
<p class="text" id="descripcion" >
En este landing page podras testear con una url de la imagen de banano el grado de madurez de la misma, utilizando
el api network-rimg-ug, el cual es un proyecto de titulacion para la Universidad de Guayaquil para la carrera de
Ingenieria en sistemas.
</p>
<div class="flex" id="forms" >
<input type="text" id="url" placeholder="url imagen" >
<button onclick="onConsultarApi()" >Consultar</button>
</div>
<section id="grado" >
<p id="madurez" >-1</p>
</section>
</div>
<script src="index.js" ></script>
</body>
</html>