1
+ <!DOCTYPE html>
2
+ < html >
3
+ < head >
4
+ < meta charset ="UTF-8 ">
5
+ < title > Social Media Counters</ title >
6
+ < link href ='https://fonts.googleapis.com/css?family=Open+Sans:400,600 ' rel ='stylesheet ' type ='text/css '>
7
+ < link rel ='stylesheet prefetch ' href ='http://maxcdn.bootstrapcdn.com/font-awesome/4.4.0/css/font-awesome.min.css '>
8
+ < link rel ="stylesheet " href ="css/style.css ">
9
+ </ head >
10
+ < body >
11
+ < div id ="total "> </ div >
12
+ < div id ="total_k "> </ div >
13
+ < div id ="wrapper ">
14
+ < a class ="twitter "> < i class ="fa fa-twitter "> </ i > < span class ="count "> </ span > Followers</ a >
15
+ < a class ="facebook "> < i class ="fa fa-facebook "> </ i > < span class ="count "> </ span > Likes</ a >
16
+ < a class ="instagram "> < i class ="fa fa-instagram "> </ i > < span class ="count "> </ span > Followers</ a >
17
+ < a class ="google "> < i class ="fa fa-google-plus "> </ i > < span class ="count "> </ span > Followers</ a >
18
+ < a class ="linkedin "> < i class ="fa fa-linkedin "> </ i > < span class ="count "> </ span > Connections</ a >
19
+ < a class ="youtube "> < i class ="fa fa-youtube "> </ i > < span class ="count "> </ span > Subscribers</ a >
20
+ < a class ="vine "> < i class ="fa fa-vine "> </ i > < span class ="count "> </ span > Followers</ a >
21
+ < a class ="pinterest "> < i class ="fa fa-pinterest "> </ i > < span class ="count "> </ span > Followers</ a >
22
+ < a class ="dribbble "> < i class ="fa fa-dribbble "> </ i > < span class ="count "> </ span > Followers</ a >
23
+ < a class ="soundcloud "> < i class ="fa fa-soundcloud "> </ i > < span class ="count "> </ span > Followers</ a >
24
+ < a class ="vimeo "> < i class ="fa fa-vimeo "> </ i > < span class ="count "> </ span > Followers</ a >
25
+ < a class ="github "> < i class ="fa fa-github "> </ i > < span class ="count "> </ span > Followers</ a >
26
+ < a class ="behance "> < i class ="fa fa-behance "> </ i > < span class ="count "> </ span > Followers</ a >
27
+ < a class ="vk "> < i class ="fa fa-vk "> </ i > < span class ="count "> </ span > Followers</ a >
28
+ < a class ="foursquare "> < i class ="fa fa-foursquare "> </ i > < span class ="count "> </ span > Friends</ a >
29
+ </ div >
30
+ < script src ='http://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js '> </ script >
31
+ < script src ="js/api.js "> </ script >
32
+ < script >
33
+ $ ( '#wrapper' ) . apis ( {
34
+ //Get Usernames
35
+ dribbble_user : 'username_here' ,
36
+ facebook_user : 'username_here' ,
37
+ instagram_user : 'username_here' ,
38
+ google_plus_id : 'username_here' ,
39
+ youtube_user : 'username_here' ,
40
+ pinterest_user : 'pinterest_username_here' ,
41
+ soundcloud_user_id : 'user_id_here' ,
42
+ vimeo_user : 'username_here' ,
43
+ github_user : 'username_here' ,
44
+ twitter_user : 'twitter_username_here' ,
45
+ behance_user : 'username_here' ,
46
+ vine_user : 'user_id_here' ,
47
+ vk_id : 'user_id_here' ,
48
+ foursquare_user : 'username_here' ,
49
+ //Get Access Tokens,keys,client_ids
50
+ dribbble_token : 'token_here' ,
51
+ instagram_token :'token_here' ,
52
+ google_plus_key :'key_here' ,
53
+ facebook_token :'token_here' ,
54
+ youtube_key :'key_here' ,
55
+ soundcloud_client_id :'client_id_here' ,
56
+ vimeo_token :'token_here' ,
57
+ behance_client_id :'client_id_here' ,
58
+ foursquare_token :'token_here' ,
59
+ linkedin_oauth : 'token_here'
60
+ } ) ;
61
+ </ script >
62
+ </ body >
63
+ </ html >
0 commit comments