So are you trying to link to the page with the seal, or are you trying to link to an external script?
The <script> tags are used to execute script (from a remote file, with the src attribute), and should be used like this:
<script src="http://domain.com/scripts/scripts.
js" language="javascript" type="text/javascript"></script>
The <a> tag is for linking to things, they are called anchors or hyperlinks:
<a href="http://domain.com/pages/where_you_want_to_go.extension">Click</a>
The above markup will output something like this:
Click
You cannot have spaces in tag names, attributes or attribute values. Therefore...
< S C R I P T SRC = h t t p s ://seal.verisign.com/getseal?host_name=www.mycompany.com&
size=S&use_flash=NO&use_transparent=YES>
< / S C R I P T >
...is invalid, change it to:
<script src="https://seal.verisign.com/getseal?host_name=www.mycompany.com&size=S&use_fla sh=NO&use_transparent=YES">
</script>
Notice also how I have quoted the attribute values. It is not always neccessary to do so but it's a good habit to have.
But the bottom line is, are you wanting to execute a script or hyperlink to a page?
I hope I haven't confused you,
Snib
<><