-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
62 lines (58 loc) · 2.35 KB
/
index.html
File metadata and controls
62 lines (58 loc) · 2.35 KB
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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="/styles/globalStyles.css"/>
<link rel="stylesheet" href="/styles/displays.css" />
<link rel="stylesheet" href="/styles/sizes.css" />
<link rel="stylesheet" href="/styles/backgrounds.css"/>
<link rel="stylesheet" href="/styles/spaces.css"/>
<link rel="stylesheet" href="/styles/inputs.css"/>
<link rel="stylesheet" href="/styles/buttons.css"/>
<link rel="stylesheet" href="/styles/texts.css"/>
<link rel="stylesheet" href="/pages/home/index.css" />
<title>TommiL90</title>
</head>
<body>
<main class="w-screen h-screen flex">
<section
class="w-50 h-screen flex flex-col items-center justify-center bg-primary"
>
<div class="flex flex-col justify-start gap-2">
<h1 class="title-1">Git search</h1>
<p class="text-1">Encontre e se conecte com profissionais de forma rápida e fácil</p>
<div class="flex gap items-center">
<p class="text-2">Achados Recentemente:</p>
<ul id="recentProfiles">
<!-- <li class="flex flex-col">
<a href=""><img class="img-perfil-sugery" src="https://pxhere.com/es/photo/451653" alt="" /></a>
<small>Acessar este perfil</small>
</li> -->
</ul>
</div>
</div>
</section>
<section
class="border w-50 h-screen flex flex-col items-center justify-center bg-grey-2"
>
<div class="flex flex-col justify-start gap-2">
<h2 class="title-2">Procurar por um usuario</h2>
<form class="flex flex-col gap">
<label for="input-init" class="text-3">Usuário github</label>
<input
type="text"
id="input-init"
class="input-default"
placeholder="Digite um usuario de github aqui..."
/>
<p class="alertUserNFound"></p>
<button type="submit" id="button-get-API" class="button-default" disabled="true">Ver perfil do github</button>
</form>
</div>
</section>
</main>
<script src="/pages/home/index.js"></script>
</body>
</html>