-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
48 lines (45 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
<!DOCTYPE html>
<html lang="en">
<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" />
<!-- FONTES -->
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap"
rel="stylesheet" />
<!-- CSS -->
<link rel="stylesheet" href="./src/styles/reset.css" />
<link rel="stylesheet" href="./src/styles/globalStyles.css" />
<link rel="stylesheet" href="./src/styles/main.css" />
<link rel="stylesheet" href="./src/styles/section.css" />
<link rel="stylesheet" href="./src/styles/button.css" />
<title>Git Search</title>
</head>
<body>
<main class="index">
<section class="index__section-first">
<div class="index__div">
<h3>Git Search</h3>
<p>Encontre e se conecte com profissionais de forma rápida e fácil</p>
</div>
</section>
<section class="index__section-second">
<form>
<h4>Procurar por um usuário</h4>
<p>Usuário github</p>
<input
class="index__input"
type="text"
placeholder="Digite um usuário do github aqui..." />
<button type="button" class="index__button">
Ver perfil do github
</button>
</form>
</section>
</main>
</body>
<script type="module" src="./src/scripts/index.js"></script>
</html>