-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
27 lines (26 loc) · 874 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>AJAX</title>
<link href="https://fonts.googleapis.com/css?family=Roboto:300" rel="stylesheet">
<link rel="stylesheet" href="css/main.css">
</head>
<body>
<div class="search">
<h1>Buscar usuarios en GitHub</h1>
<input type="text" class="jsGithubUser" name="user" value="" placeholder="Usuario">
<button type="button" class="jsSearchButton" name="button">Buscar</button>
<div class="Results">
<h2>Resultados</h2>
<p class="underline">Nombre:</p>
<span id="jsUserName"></span>
<p class="underline">Número de repositorios:</p>
<span id="jsRepositories"></span>
<p class="underline">Foto:</p>
<p id="jsPhoto"></p>
</div>
</div>
<script src="js/main.js" charset="utf-8"></script>
</body>
</html>