Formatting Stationery

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have stationery that I made of company letterhead. Is there anyway to
format stationery such as margins and indentations? Does anyone have and
suggestions on how I would go about doing this? Thanks
 
Considering you made stationery, I will assume that you have some
familiarity with web page tag. The inline style sheet is the "<style
type="text..." to "</style>" section. The "margin" value is what controls
the margins. (and yes, I like Betty Boop, so no giggling. ;)

<html>

<head>
<style type="text/css">

<!--

body { background-attachment: fixed;
background-repeat: repeat-y ;
background-color: "#EC5D01" ;
color: "#000000" ;
font-size: 10pt ;
font-family: "Trebuchet MS", "Arial", "sans serif" ;
font-weight: normal ;
margin: 5px 5px 5px 225px ;
}

-->

</style>
</head>

<body BACKGROUND="Betty%20Boop.jpg">

<div>&nbsp;</div>
<div>&nbsp;</div>
<div>&nbsp;</div>
<div>&nbsp;</div>

<p><img ID="sound" src="bettyboop.wav" height="10" width="10"
style="display: none">
<font face="Arial" color="#FF0000" size="2" style="display: none"><b><==
Sound is there, this warning will disappear when this message is
sent!</b></font></p>


<script language="VBScript">
Dim play
Dim line1
play=sound.src
line1="<BGSOUND balance=0 loop=1 src="&play&">"
Document.Writeln line1
</script>


</body>
</html>
 
Back
Top