-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
63 lines (54 loc) · 1.62 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Github Finder</title>
<link type="text/css" rel="stylesheet" href="style.css" />
<link rel="shortcut icon" href="images/favicon.png" type="image/png" />
</head>
<body>
<header>
<nav>
<div id="logo-container">
<h1>Github</h1>
<img id="logo" src="images/logo.svg" alt="logo" />
<h1>Finder</h1>
</div>
</nav>
</header>
<main>
<div class="container">
<div class="search-container">
<div class="image-hero">
<img
src="images/octocat.png"
id="hero"
alt="hero-image"
/>
</div>
<div class="search">
<h1>Encontre facilmente seus repositórios do Github!</h1>
<form>
<input
type="text"
id="user"
class="user"
placeholder="Digite o nome do usuário"
autofocus
/>
<button class="searchBtn">Pesquisar</button>
</form>
</div>
</div>
</div>
<h2 id="loading" class="hidden">Carregando...</h2>
<h1 class="without-repos">Repositórios</h1>
<ul class="repositories">
<!-- Each li will be added dynamically -->
</ul>
</main>
<script src="https://cdn.jsdelivr.net/npm/axios/dist/axios.min.js"></script>
<script src="script.js"></script>
</body>
</html>