forked from bh-lay/github-widget-user
-
Notifications
You must be signed in to change notification settings - Fork 1
/
demo.html
66 lines (62 loc) · 1.2 KB
/
demo.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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>github user widget</title>
<style type="text/css">
/* Reset CSS
* --------------------------------------- */
body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,
form,fieldset,input,textarea,p,blockquote,th,td {
padding: 0;
margin: 0;
}
a{
text-decoration:none;
}
table {
border-spacing: 0;
}
fieldset,img {
border: 0;
}
address,caption,cite,code,dfn,em,strong,th,var {
font-weight: normal;
font-style: normal;
}
strong{
font-weight: bold;
}
ol,ul {
list-style: none;
margin:0;
padding:0;
}
caption,th {
text-align: left;
}
h1,h2,h3,h4,h5,h6 {
font-weight: normal;
font-size: 100%;
margin:0;
padding:0;
color:#444;
}
q:before,q:after {content:'';}
abbr,acronym { border: 0;}
body{
background: #eee;
}
.github-widget-user{
width: 240px;
padding: 10px;
margin: 40px auto;
}
</style>
</head>
<body>
<div class="github-widget-user" data-user="bh-lay"></div>
<script type="text/javascript" src="asset/jquery.js"></script>
<script type="text/javascript" src="asset/jquery-github-user-widget.js"></script>
</body>
</html>