-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
41 lines (41 loc) · 1.28 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="styles.css">
<title>Github API consult</title>
</head>
<body>
<header>
<i class="fa fa-github fa-5x" style="color: aliceblue;" aria-hidden="true"></i>
<br>
<h1>Github API</h1>
<P>Consulta los datos de tu cuenta Github con solo el nombre de usuario.</P>
</header>
<div>
<div class="search_bar">
<label for="user_name">User:</label>
<input type="text" id="u_name" name="user_name">
<button onclick="getUser();">Búsqueda</button>
</div>
<figure>
<img src="" id="user_pic" alt="">
</figure>
<h2>Usuario</h2>
<p id="login"></p>
<h2>Repositorios</h2>
<p id="Repositorios"></p>
<h2>Biografía</h2>
<p id="Bio"></p>
<h2>Blog</h2>
<p id="Blog"></p>
<h2>Email</h2>
<p id="Email"></p>
<h2>Twitter</h2>
<p id="Twitter"></p>
</div>
<script src="./index.js"></script>
</body>
</html>