-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
33 lines (23 loc) · 819 Bytes
/
index.html
File metadata and controls
33 lines (23 loc) · 819 Bytes
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>ejercicio ajax y github</title>
<link rel="stylesheet" href="styles/index.css">
</head>
<body>
<h2>Buscador de usuarios de Github</h2>
<input id="js-input-name" type="text" name="" value="" placeholder="Nombre">
<button id="js-button" class="button" type="button" name="button">Buscar</button>
<h3>Resultados</h3>
<div id="js-userContainer" class="userContainer">
<p><strong>Nombre</strong></p>
<p id="js-user-name"></p>
<p><strong>Foto</strong></p>
<img id="js-user-image" class="userPhoto" alt="Foto de usuario de Github">
<p><strong>Número de repositorios</strong></p>
<p id="js-user-repositories"></p>
</div>
<script type="text/javascript" src='main.js'></script>
</body>
</html>