-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
60 lines (50 loc) · 1.57 KB
/
Copy pathindex.html
File metadata and controls
60 lines (50 loc) · 1.57 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
<!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="style/style.css">
<link rel="stylesheet" href="" id="theme-link">
<title>GitHub Finder</title>
</head>
<body>
<!-- header -->
<div class="container-header">
<header>
<h1>GitHub Finder
<img class='icon' src="assets/github-icon.png" alt="github-icon">
</h1>
</header>
</div>
<!-- form -->
<div class="container-form">
<label for="user"> Usuário </label>
<input
type="text"
name="user"
id="user"
placeholder="Digite o nome de usuário"/>
<input class="button" type="submit" onclick="getApi()" />
<div class="container-button"></div>
<input class="btn-toggle" type="button" value="Dark Mode 🌙"></input>
</div>
<footer>
Editado por: <a href="https://github.com/verasdan" target="_blank">®Danilo Veras™</a>
</footer>
</div>
<!-- container-respost -->
<div class="container-respost" style="display: none;">
<img class="img" src="" alt="" />
<p class="bio"></p>
<div class="container-numbers">
<ul>
<li class="public-repost"></li>
<li class="followers"></li>
</ul>
</div>
</div>
<script src="script/apiGitHub.js"></script>
<script src="script/darkmode.js"></script>
</body>
</html>