-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathexample.html
67 lines (59 loc) · 2.2 KB
/
example.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
67
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>Wee NoJS Social Share example, mate.</title>
<style type="text/css">
.social {
padding: .5% 1%;
display: inline-block;
margin: 1.5% auto;
text-decoration: none;
}
.social:hover {
opacity: .9;
}
.facebook {
background-color: #3C5A98;
color: white;
}
.twitter {
background-color: #00aced;
color: white;
}
.google {
background-color: #D14836;
color: white;
}
.linkedin {
background-color: #185C80;
color: white;
}
.reddit {
background-color: #CEE3F8;
color: black;
}
.hackernews {
background-color: #FF6600;
color: black;
}
.buffer {
background-color: #70BE6A;
color: white;
}
</style>
</head>
<body>
<section class="socialshares">
Share:
<a class="social facebook" target="_blank" href="http://www.facebook.com/sharer/sharer.php?u=http%3A%2F%2Ftosbourn.com">Facebook</a>
<a class="social twitter" target="_blank" href="https://twitter.com/intent/tweet?text=Tosbourn%20&url=http%3A%2F%2Ftosbourn.com&via=tosbourn">Twitter</a>
<a class="social google" target="_blank" href="https://plus.google.com/share?url=http%3A%2F%2Ftosbourn.com">Google+</a>
<a class="social linkedin" target="_blank" href="http://www.linkedin.com/shareArticle?mini=true&url=http%3A%2F%2Ftosbourn.com&title=Tosbourn&summary=My%20Summary&source=Tosbourn">LinkedIn</a>
<a class="social reddit" target="_blank" href="http://www.reddit.com/submit?url=http%3A%2F%2Ftosbourn.com">Reddit</a>
<a class="social hackernews" target="_blank" href="http://news.ycombinator.com/submitlink?u=http%3A%2F%2Ftosbourn.com&t=Tosbourn">Hacker News</a>
<a class="social buffer" target="_blank" href="http://bufferapp.com/add?text=Tosbourn&url=http://tosbourn.com">Buffer</a>
</section>
</body>
</html>