-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
executable file
·43 lines (37 loc) · 1.3 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
42
43
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, minimum-scale=1, maximum-scale=1">
<meta charset="utf-8">
<link href="https://fonts.googleapis.com/css?family=Open+Sans:400,800" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="_css/style.css">
<title>API GitHub</title>
</head>
<body>
<header>
<figure>
<img class="logo" src="_img/GitHub-Mark.png"/>
</figure>
<nav class="pesquisa">
<input class="pesquisa__input" type="text" id="userGit" placeholder="GitHub User">
<button class="pesquisa__botao" id="buscaUser">Buscar</button>
</nav>
</header>
<main>
<section class="resultado">
<h1 class="resultado__usuario" id="gitUser"></h1>
<article>
<button class="resultado__botao" id="buscaRepos">Repos</button>
<ul id="repos"></ul>
</article>
<article>
<button class="resultado__botao" id="buscaStarred">Starred</button>
<ul id="starred"></ul>
</article>
</section>
</main>
<footer class="voltar">
<button class="voltar__botao" id="voltar">Voltar</button>
</footer>
<script src="_js/script.js"></script>
</body></html>