Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

HTML 1

Status
Not open for further replies.

deke40

Technical User
Nov 25, 2001
68
US
I am new at this and need some help. I have several help sites but can't find the problem with the following example. All the text that follows this HTML is changed to the font size in the Marquee part.

<font color=&quot;Blue&quot;><Font size=&quot;6&quot;><Marquee direction=&quot;right&quot;scrollamount=&quot;2&quot;=>DEKE</Marquee>



<HTML><HEAD>
<META http-equiv=Content-Type content=&quot;text/html; charset=iso-8859-1&quot;>
<META content=&quot;MSHTML 5.50.4913.1100&quot; name=GENERATOR>
<STYLE></STYLE>
</HEAD>
<BODY bgColor=#ffffff>
<DIV><STRONG><FONT face=Arial><IMG alt=&quot;&quot; hspace=0
src=&quot;C:\My Documents\Gifs\coputype3.gif&quot; align=baseline
border=0></FONT></STRONG></DIV></BODY></HTML>
Thanks
 
if this is all one page then your code is out of order, everyting has to go in the body, and you have an extra equals sign in the marquee..try this:

<HTML>

<HEAD>

<META http-equiv=Content-Type content=&quot;text/html; charset=iso-8859-1&quot;>
<META name=GENERATOR content=&quot;MSHTML 5.50.4913.1100&quot;>

</HEAD>

<BODY bgColor=#ffffff>

<font color=&quot;Blue&quot; size=&quot;6&quot;>
<Marquee direction=&quot;right&quot;scrollamount=&quot;2&quot;>
DEKE
</Marquee>
</font>
<DIV>
<STRONG>
<FONT face=Arial>
<IMG alt=&quot;&quot; hspace=0 src=&quot;C:\My Documents\Gifs\coputype3.gif&quot; align=baseline border=0>
</FONT>
</STRONG>
</DIV>

</BODY>

</HTML>
-Greg :-Q

flaga.gif
 
Thanks Mackey333. I just copied yours and put it in clipboard for easy access. All I have to do is a little copy and paste and I'm there. I was trying out my gifs in Outlook Express Email and accidently pressed the Ctrl and Tab and it converted the gif to html. I have to take that one line (DOCTYPE HTML PUBLIC----EN&quot;>) out and there it is. I don't know if that is written down anywhere but it's great. Thanks again.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top