-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
60 lines (59 loc) · 2.06 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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>User - GitHub</title>
<link rel="shortcut icon" href="public/github.svg" type="image/x-icon" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<script src="https://cdn.tailwindcss.com"></script>
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css"
/>
<link
href="https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="css/style.css" />
<link rel="stylesheet" href="css/media-queries.css" />
</head>
<body style="font-family: 'Noto Sans', sans-serif">
<div class="w-[100%] flex flex-col items-center">
<div class="flex flex-col justify-center items-center py-[100px]">
<div>
<img src="public/githubLogo.png" alt="githubLogo" class="w-[600px]" />
</div>
<div>
<input
type="text"
placeholder="Seu nome de usuário GitHub"
class="w-[500px] h-[40px] rounded-[5px] outline-none border border-[#cccccc] pl-[10px] text-lg"
id="user"
/>
</div>
<div>
<button
class="w-[200px] mt-[20px] bg-[#000] py-[10px] rounded-[8px] cursor-pointer"
onclick="getPerfil()"
id="pesquisar"
>
<p class="font-semibold" style="color: #fff">Pesquisar</p>
</button>
</div>
</div>
<div class="flex-col items-center invisible" id="divPai">
<div
id="avatarDiv"
class="flex flex-col items-center justify-center"
></div>
<div
id="divProjects"
class="w-[1000px] mt-[100px] border-t border-[#cccccc]"
></div>
</div>
</div>
</body>
<script src="script.js"></script>
</html>