-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
26 lines (23 loc) · 787 Bytes
/
index.html
File metadata and controls
26 lines (23 loc) · 787 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Github Searcher</title>
<link href="https://fonts.googleapis.com/css?family=Ubuntu" rel="stylesheet">
<link rel="stylesheet" href="stylesheets/style.css">
</head>
<body>
<h1>Buscador de usuarios en Github</h1>
<input id="jsSearch"type="text" name="" value="">
<button id="jsBtn" type="button" name="button">Buscar</button>
<h2>Resultados</h2>
<div class="TextResultWrapper">
<p class="title">Nombre <span id="jsName"></span></p>
<p class="title">Número de repositorios públicos <span id="jsNumberRepo"></span></p>
</div>
<p class="title">Foto</p>
<div id="jsUserPicture">
</div>
<script src="js/main.js" charset="utf-8"></script>
</body>
</html>