HTML Geeks...

Started by ZLTFUL, February 11, 2009, 08:16:48 AM

Previous topic - Next topic

ZLTFUL

Can anyone recommend a good free HTML editor? Apparently, FrontPage is no longer included in the Office Enterprise edition and I need to create a few htm files for interoffice use...

TIA
Avatar courtesy of www.mybadco.com
2012 Panigale 1199
2003 KTM 640 Adventure

JEFF_H

this one is free and has been around a long time-
http://www.coffeecup.com/free-editor/

ZLTFUL

 actually I found a great one...Notepad. Then I just save my document with an htm extension. Plus I realized I have Contributor as part of my Adobe CS4 Master Collection install...yeah...I use CS4 alot...not really. Heheh.

Only problem I am having now is the web page I have my document pointed to won't load. But when I point the desktop background to the web page directly, it does...

Here is the string I am using...

<html>

<head>

<META HTTP-EQUIV="Refresh" CONTENT="60">

</head>

<body bgcolor="#0066CC">

<p align="center">

<font color="#FFFFFF" size="8" face="Verdana">

Welcome To Doll Distributing Des Moines

</font>

<br>

<img src="http://www.wunderground.com/radar/radblast.asp?ID=DMX&lat=41.60760117&lon=-93.59697723&label=Des+Moines%2C+IA&type=N0R&zoommode=pan&map.x=400&map.y=240&centerx=400&centery=240&prevzoom=zoom&num=6&delay=15&scale=0.75&showlabels=1&smooth=1&noclutter=0&showstorms=0&rainsnow=0&lightning=0&remembersettings=on&setprefs.0.key=RADNUM&setprefs.0.val=6&setprefs.1.key=RADSPD&setprefs.1.val=15&setprefs.2.key=RADC&setprefs.2.val=0&setprefs.3.key=RADSTM&setprefs.3.val=0&setprefs.4.key=SLABS&setprefs.4.val=1&setprefs.5.key=RADRMS&setprefs.5.val=0&setprefs.6.key=RADLIT&setprefs.6.val=0&setprefs.7.key=RADSMO&setprefs.7.val=1">

</p>

</body>

</html>
Avatar courtesy of www.mybadco.com
2012 Panigale 1199
2003 KTM 640 Adventure

Slide Panda

Well, you img tag is all tore up.  You seem to be pointing to a page, not an image.  YOu can't just load some other page into yours with an image tag.  Are you thinking of an iframe tag?

Also, you've got styling elements in there that are oooold, and that <font> tag doesn't go so well anymore...

For editors... Dreamweaver is free for 30 days.  If you're on a Mac - Snag Coda.  It's free of 15 days, but pretty cheap to buy and it's nice
-Throttle's on the right, so are the brakes.  Good luck.
- '00 M900S with all the farkles
- '08 KTM 690 StupidMoto
- '07 Triumph 675 Track bike.

ducducgooseme

I use a combo of Adobe Dreamweaver and Eclipse.
If you love your bike, set it free.
If it comes back to you, you've
probably high-sided.

the_Journeyman

Dreamweaver is nice, but not free ~

JM
Got Torque?
Quote from: r_ciao on January 28, 2011, 10:30:29 AM
ADULT TRUTHS

10. Bad decisions make good stories.

ZLTFUL

Well...I am not actually trying to create a page. I am trying to create a htm document that has a header (our company name) and then the majority of the middle portion is occupied with a 60 second refreshing frame of the most recent local radar loop.

As I said, I can just point XP's web active desktop to the web page and it works fine. When I point the "image source" to the url of the web page that is a recent local radar loop it just gives me the red X...
Avatar courtesy of www.mybadco.com
2012 Panigale 1199
2003 KTM 640 Adventure

Slide Panda

Try <img src="http://radblast-mi.wunderground.com/cgi-bin/radar/WUNIDS_map?station=DMX&brand=wui&num=6&delay=15&type=N0R&frame=0&scale=0.750&noclutter=0&t=1234380752&lat=41.60760117&lon=-93.59697723&label=Des+Moines%2C+IA&showstorms=0&map.x=400&map.y=240&centerx=400&centery=240&transx=0&transy=0&showlabels=1&severe=0&rainsnow=0&lightning=0&smooth=1">

Not sure if taht will get you the constant updates you need - but it should since they dynamically create the image.

And you are getting the red X w/ your original code because you are tyring to point an image tag at a fully formed HMTL page, not just the image. 
-Throttle's on the right, so are the brakes.  Good luck.
- '00 M900S with all the farkles
- '08 KTM 690 StupidMoto
- '07 Triumph 675 Track bike.

DesmoDiva

Quote from: the_Journeyman on February 11, 2009, 11:19:28 AM
Dreamweaver is nice, but not free ~

JM

Nope, but I believe I left it on Carrie's laptop.  ;)
'01 ST4 Yellow
'02 ST4s Yellow

the_Journeyman

Nice!  Thanks, that's a great program  [thumbsup]

JM
Got Torque?
Quote from: r_ciao on January 28, 2011, 10:30:29 AM
ADULT TRUTHS

10. Bad decisions make good stories.

mitt

#10
Ryan,

I think you forgot the / at the end of the img tag.

example from w3schools   <img src="angry.gif" alt="Angry face" />

mitt



this works for me-

<html>

<head>

<META HTTP-EQUIV="Refresh" CONTENT="60">

</head>

<body bgcolor="#0066CC">

<p align="center">

<font color="#FFFFFF" size="8" face="Verdana">

Welcome To Doll Distributing Des Moines

</font>

<br>


<img src="http://radblast-mi.wunderground.com/cgi-bin/radar/WUNIDS_map?station=DMX&brand=wui&num=6&delay=15&type=N0R&frame=0&scale=0.750&noclutter=0&t=1234383502&lat=41.60760117&lon=-93.59697723&label=Des+Moines%2C+IA&showstorms=0&map.x=400&map.y=240&centerx=400&centery=240&transx=0&transy=0&showlabels=1&severe=0&rainsnow=0&lightning=0&smooth=1"/>

</p>

</body>

</html>

ZLTFUL

Thanks Mitt...I actually found a stripped down url from their website after digging deeply into their site map that shortens the URL WAY down and it worked. Added the / andeven better. Going to push the refresh out to like 5 minutes though. Their radar feed is on a 10 minute refresh.

Now to figure out how to resize the radar picture to consume more of the page...

Avatar courtesy of www.mybadco.com
2012 Panigale 1199
2003 KTM 640 Adventure

Slide Panda

Mitt, he didn't - you're going into XHTML spec// he's stuff is a bit older school.  If he wants to use self cosing tags he need to hit that <br /> also, and ditch <font...  the align="center" in his p tag and such - in lieu of CSS
-Throttle's on the right, so are the brakes.  Good luck.
- '00 M900S with all the farkles
- '08 KTM 690 StupidMoto
- '07 Triumph 675 Track bike.

ZLTFUL

OK...so I figured out part of the problem...I was trying to use ASP web pages. Won' work. When I go to any CGI scripted page, it works fine. Now I just need to find a large format nearly full screen radar loop in CGI...

Hehe.
Avatar courtesy of www.mybadco.com
2012 Panigale 1199
2003 KTM 640 Adventure

mitt

Quote from: yuu on February 11, 2009, 12:38:24 PM
Mitt, he didn't - you're going into XHTML spec// he's stuff is a bit older school.  If he wants to use self cosing tags he need to hit that <br /> also, and ditch <font...  the align="center" in his p tag and such - in lieu of CSS

Weird, I copied his html locally and tried loading it, and it didn't work, so then I added the / in the img tag and then it worked, so I thought it was that, but now I take the / out and it still works???


Also, to the original post, for a free html editor, I found Nvu a couple weeks ago, but I have not tried it yet.

It is supposed to be a html editor plus site manager kind of like front page.  Maybe a dmfer has some FHE?

http://www.download.com/Nvu/3000-10247_4-10412423.html

mitt