summaryrefslogtreecommitdiffstats
path: root/twitterview/twitter.html
blob: 1f2df2782ee27855f2101e68eaa4bcbb87d0eaea (plain)
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
<html>
<head>
<style>
    #header_div {
        background: red;
    }

    #left_pane_div {
        background: green;
        float: left;
        width: 20%
    }

    #central_div {
        background: blue;
     }
</style>

<script>
    function init() {
        var html = twitter.transform(twitter.credentialsXml(), "credentials.xsl");
    }
</script>
</head>

<body onload="init()">
    <div id="header_div"> This is the header </div>

    <div>
        <div id="left_pane_div"> This is the left pane </div>

        <div id="central_div"> This is the central widget </div>
    </div>

</body>

</html>