-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
42 lines (38 loc) · 1.16 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>GitHub Finder</title>
<!-- Icon tab browser -->
<link rel="icon" href="assets/GitHub-Mark-32px.png" type="image/x-icon" />
<!-- Reset CSS and CSS -->
<link rel="stylesheet" href="./assets/css/resets.css" />
<link rel="stylesheet" href="./assets/css/painel.css" />
<!-- Fonts -->
<link
href="https://fonts.googleapis.com/css2?family=Pacifico&family=Raleway:ital,wght@0,200;0,600;0,900;1,300&display=swap"
rel="stylesheet"
/>
</head>
<body>
<main class="hero">
<h1>GitHub Finder</h1>
<p class="main__p">Find, meet and contribute!</p>
<form class="forms">
<input
type="text"
name="texto"
id="texto"
placeholder="Enter with user name"
/>
<div class="resultado"></div>
<input type="submit" value="Find it!" id="btn" />
</form>
</main>
<footer>
<small>Coded and designed by @lubomfim</small>
</footer>
<script src="./assets/js/main.js"></script>
</body>
</html>