-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmain.html
49 lines (46 loc) · 1.51 KB
/
main.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
<!DOCTYPE html>
<html>
<head>
<!--
TODO: (required)
The title of the page to share (used by Facebook)
-->
<title>"blinks of awe" poetry iBook</title>
<meta http-equiv="content-type" content="text/html; charset=utf-8">
<link rel="stylesheet" href="style.css">
</head>
<body>
<div id="wrapper">
<!--
TODO: (all optional)
data-url the link to be tweeted
data-text the text to be tweeted
data-via screen name of the user to attribute the Tweet to
data-related who the user will be asked to follow after tweeting
e.g.
data-url = "http://example.com/"
data-text = "Hello world!"
data-via = "artvankilmer"
will result in the following tweet:
"Hello world! http://example.com via @artvankilmer"
-->
<a href="#" class="twitter-share-button"
data-url="http://blinksofawe.com/"
data-text="Just finished blinks of awe, an awesome poetry iBook: "
data-related="blinksofawe">Share on Twitter</a>
<!--
TODO: (required)
data-url is the link you'll share on Facebook
-->
<a href="#" class="facebook-share-button"
data-url="http://blinksofawe.com/">Share on Facebook</a>
<!--
TODO: (required)
data-url is the link you'll share on Google+
-->
<a href="#" class="google-share-button"
data-url="http://blinksofawe.com/">Share on Google+</a>
</div>
<script type="text/javascript" src="js/script.js" charset="utf-8"></script>
</body>
</html>