-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhow_works.php
67 lines (52 loc) · 2.59 KB
/
how_works.php
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 PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head>
<title>.:: Welcome to ltweet.com ::.</title>
<meta http-equiv="content-type" content="text/html;charset=utf-8">
<link rel="stylesheet" href="css/default.css" type="text/css" />
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-21972831-3']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
</head>
<body>
<?php //Showing applications page
include_once('common_design.php');
$common_design = new commonDesign();
?>
<!-- Main Menu -->
<?php echo $common_design->topMenu() ?>
<div id="main-container">
<!-- Right Column -->
<?php echo $common_design->rightColumn(false, false) ?>
<div id="left">
<h1 class="info-title">How it works</h1>
<div class="info-text">
What do people often do when they want put up longer text on
twitter? They go write a long post, put it online somewhere and
use a URL shortening service, so they can write at least a few
words alongside the link as an intro in their tweet.<br /><br />
The problem? People are sick of having to navigate away from
twitter throughout the day just to read people's "tweets". They
rarely click though anymore.<br /><br />
The solution? Simply spread out your post over a few tweets.
Ltweet is a service that allows you to put in up to 5 messages
worth of text, or 700 characters, and it will automatically break
them up and post them to twitter for you.<br /><br />
You don't have to sit
and try to keep your train of thought as you press the "tweet"
button and wait for it to load so you can continue writing. Just do
what you do best, write what's on your mind, and leave the rest to
us!
</div>
</div>
<div style="clear:both;height:30px;"></div>
</div>
</body>
</html>