Click to See Complete Forum and Search --> : Help please!
drlee
09-19-2003, 04:40 PM
About a year ago I came across a site that had a little program that would convert text to html. It was very simple, I think it may have been a tutorial. What I'm looking for is a very simple conversion tool for just very simple conversions. You entered the text then clicked and it converted to a box and you could copy and paste. I have a program that will alow me to enter descriptions in html, that's all I need to be able to do.
Can anyone help?
Thanks in advance!
drlee
David Harrison
09-19-2003, 05:33 PM
What do you mean by just entering text? You just put the word "hello" in and an entire HTML document comes out?
PeOfEo
09-19-2003, 07:09 PM
drlee, just for future reference please pick a better title something that is more descriptive, people have been making a big fuss over it lately.
terribrill
09-20-2003, 09:59 PM
Originally posted by drlee
About a year ago I came across a site that had a little program that would convert text to html. It was very simple, I think it may have been a tutorial. What I'm looking for is a very simple conversion tool for just very simple conversions. You entered the text then clicked and it converted to a box and you could copy and paste. I have a program that will alow me to enter descriptions in html, that's all I need to be able to do.
Can anyone help?
Thanks in advance!
drlee
One way that can be done is to use something like Microsoft Word. Type out what you want, and then "Save as Web Page". This really gives you crappy code, but it will put your text into HTML...
spykemitchell
09-21-2003, 04:59 AM
Do you mean like, you type,
hello
This text is red
goodbye
and it turns it into
hello<br><br>
<font color="red">this text is red </font><br><br>
goodbye
Is that what you mean?
David Harrison
09-21-2003, 06:06 AM
No, it can never be that simple. It gives you this:
drlee
09-21-2003, 09:59 AM
Originally posted by spykemitchell
Do you mean like, you type,
hello
This text is red
goodbye
and it turns it into
hello<br><br>
<font color="red">this text is red </font><br><br>
goodbye
Is that what you mean?
I think I found a program that will do it. It's called "KYS Scriptomania". It does allot but it also does this simple task.
Thanks,
drlee
PeOfEo
09-21-2003, 01:04 PM
Dont use the font element. It has been depreciated. Use css
<span style="color:red; font:11px sans-serif, arial, helvetica;">Font color and style here</span>