X
KioWare logo

KioWare has a new website featuring updated product information, pricing, documentation, and resources. Choose an option below to continue.

For existing customers, you can log in to your account here.

Examples

The following is a list of sample code for which our clients have asked. Feel free to use this as necessary with your KioWare project. 
 
Remove Body Margins

Remove all spacing to left top and left of a picture:

Copy to Clipboard | View Code In Action | Back

Code:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<HTML><head>
<style type="text/css">
<!--
body {
margin-left: 0px;
margin-top: 0px;
margin-right: 0px;
margin-bottom: 0px;
}
-->
</style>

</head><body>
<img src="/kwwmedia/KioWare_logo_602wide.png">
</body>
</HTML>