-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
48 lines (48 loc) · 2.32 KB
/
Copy pathindex.html
File metadata and controls
48 lines (48 loc) · 2.32 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
<!DOCTYPE html>
<html lang="en" class="bg-white">
<head>
<meta charset="UTF-8">
<title>GitHub Profile Languages</title>
<link rel="stylesheet" href="css/style.css" type="text/css" media="screen" charset="utf-8">
<script src="js/url.min.js"></script>
<script src="js/main.js"></script>
</head>
<body class="bg-white">
<div class="container text-center">
<div class="content mrg-xl pad-xl">
<h1><span class="username"></span> Linguagens</h1>
<p>Crie um gráfico de pizza com as linguagens de programação do usuário a partir de seu perfil no GitHub.</p>
<input class="form-elm" type="text" placeholder="@someone" autofocus="autofocus"><br>
<iframe id="graph" src="api.html" frameborder="0"></iframe><br>
<button data-popup=".popup.share" class="share btn bg-green"><i class="fa fa-share-alt"></i> Share</button>
<button data-popup=".popup.embed" class="embed btn bg-green"><i class="fa fa-code"></i> Embed</button>
<a href="https://github.com/isaccanedo/github-profile-languages" class="btn bg-green"><i class="fa fa-github"></i> Confira o código-fonte</a>
</div>
<div class="popup embed">
<div class="popup-content">
<textarea class="form-elm"></textarea>
<button class="close btn bg-white">Fechar</button>
</div>
</div>
<div class="popup share">
<div class="popup-content">
<div class="social">
<a class="twitter" target="blank">
<i class="fa fa-twitter"></i>
</a>
<a class="facebook" target="blank">
<i class="fa fa-facebook"></i>
</a>
<a class="gplus" target="blank">
<i class="fa fa-google-plus"></i>
</a>
</div>
<button class="close btn bg-white">Fechar</button>
</div>
</div>
<p class="footer">
Desenvolvido com JavaScript <i class="fa fa-heart"></i>
</p>
</div>
</body>
</html>