| 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>
|