-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
30 lines (26 loc) · 1000 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
28
29
30
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>GitHub API - buscando usuários com fetch</title>
<link rel="stylesheet" href="src/css/reset.css">
<link rel="stylesheet" href="src/css/style.css">
<link rel="stylesheet" href="src/css/responsive.css">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/devicons/[email protected]/devicon.min.css">
</head>
<body>
<main>
<i class="devicon-github-original"></i>
<section class="container">
<header>
<h2>Buscar Usuário</h2>
<input type="text" id="input-search" placeholder="Digite o nome do usuário no GitHub">
<input type="button" value="Buscar" id="btn-search">
</header>
<div class="profile-data"></div>
</section>
</main>
<script type="module" src="src/scripts/index.js"></script>
</body>
</html>