Article Figure 1 Figure 2 Figure 3 Figure 4
Listing 1 Listing 2 Listing 3 Listing 4 Listing 5
Table 1 dec2005.tar

Listing 1 The HTML contents of a simple widget

<!--

    Mihalis Tsoukalos

File: HelloSysAdmin.html
Date: Wednesday 17 August 2005

This file is provided without any warranties.

-->

<html>

<head>

<style>
    body
    {
        margin: 0;
    }

    .helloSA
    {
        font: 20px "Lucida Grande";
        font-weight: bold;
        color: white;
        text-align: center;
        position: absolute;
        top: 25px;
        left: 18px;
        width: 180px;    
    }
</style>

</head>

<body>
        <img src="Default.png">    
        <div class="helloSA">Hello Sys Admin magazine!</div>
</body>

</html>