tags:

views:

823

answers:

15

I'm looking for a simple free/cheap Windows text editor for a family member learning HTML. Ideally it would be as simple and non-intimidating as possible. Basically Notepad with code highlighting. Any help would be much appreciated!

A: 

I like HTML Kit.

Andrew Cowenhoven
+4  A: 

Visual Studio 2008 Express... it's free and the HTML/JS/CSS editing is great.

TravisO
seems like an awful lot of overkill for *just* html/css editing, though you're right - it's a good tool
warren
Actually, if it is just for html/css, you don't even need Express, you can just go with the Visual Studio 2008 shell. It has the html/css editors without the VB or C# portions.
JeremyDWill
A: 

I used NVU a while back. However, it appears Mozilla has suspended development on it (not that that means it's not still a good tool) - https://wiki.mozilla.org/NVU:Home_Page

I also use Crimson Editor

warren
Kompozer is, AFAIK, the successor of Nvu.
PhiLho
that does seem to be the information on the mozilla site I linked-to; however, I haven't used it (specifically), and didn't want to recommend something I hadn't used :)
warren
+20  A: 

I like notepad++ lightweight and easy to use.

Gamecat
Notepad++ is where I spend 90% of my professional life...
alexp206
I agree with the Notepad++ vote if all you need is notepad with highlighting. It's a great and lightweight editor.
metanaito
+3  A: 

Notepad++ would fit the notepad + highlighting bill (and then some, but the other features won't get in the way).

But I think you may want something more specialized. Completion prompts, toolbar buttons for common tags, and an understanding of css all come to mind as being very helpful for beginners and experts alike.

With that in mind, you might try WebTide. It's freeware and seems pretty nice.

Joel Coehoorn
+1  A: 

For a free solution, I recommend jEdit, but for a powerhouse, try IntelliJ. Both have great code completion and formatting. Also, they are scriptable.

Eric Wendelin
+1  A: 

I would recommend Aptana Studio. It is a full featured editor, but the extra features don't get in the way of just writing some html. My favorite feature though is the integration of a Firefox and Internet Explorer View. Just push the Firefox preview button, and you can see what it looks like and how your scripts are working,

Philip T.
Based on Eclipse, right? If so, then it's probably very nice, but just as much overkill as visual studio.
Joel Coehoorn
+1  A: 

I wouldn't trade my SciTE for anything else, but Notepad++ gives similar high quality syntax highlighting of compound documents (HTML/JS/PHP) with perhaps an easier/more familiar way of changing settings (plus it has some nice functionalities).

KompoZer might be a good choice if you want WYSIWYG edition without sacrifice on quality of generated code.

PhiLho
+1  A: 

Back in the 1990s, I used Hot Dog Pro, HoTMetaL, Homesite, or Netscape Composer. Those were the glory days of HTML-specific editors. For HTML layout there was Visual Cafe, FrontPage, GoLive, and so many more. Ah, the 1990s, the halcyon days of high top fades, Jim Carrey on In Living Color, shirts that changed color based on your body heat, and fat stock portfolios for janitors.

Nowadays it's best to go with a general purpose text editor that supports syntax highlighting and plugins. Notepad++ on Windows is exceptional (and free). It's as simple as Notepad, but offers flexibility that will let your family member do more as she learns more (such as run HtmlTidy or validate XHTML).

Robert S.
+2  A: 

Try Notepad2

mikedopp
+1  A: 

I like notepad++ very much.Its a light weigh and with every feature you can think in a editor.

Other one is Kmodo IDE is use for the HTML editing.

Others are dreamveawer and microsoft product but they aren't light.

rahijain
+2  A: 

I've been using EditPlus for quite a while now. It has user defineable syntax highlighting, as well as useful HTML/CSS code snippets, multi-page searching/replacing, etc. No WYSIWYG, just the basics...but it does them extremely well. The whole program is about a 1 meg download...so it's more lightweight than notepad++...although not free ($35...but the trial technically keeps working 100%).

Justin Lucente
+1  A: 

The Zeus edito does HTML syntax highlighting.

It can also do seamless FTP/SFTP editing, which is great when you have to edit a HTML page located on the web server.

jussij
A: 

Rapid Webpage Creator - works like the online editor at w3schools.com

  • HTML, CSS and Javascript editor
  • Preview at the same time
  • Runs within IE offline

works nice for me and my students.

Roger Gajraj
+2  A: 

I like E, it is a windows clone of TextMate that works with the TextMate bundles. It is full featured supporting syntax highlighting, regular expressions, smart indenting and a host of text transformation utilities for programmers. On feature that I love is that the undo history is a tree; so if you undo a few times and make changes on top of the undo state in E you can access both branches if you need to when undoing.

"E is a new text editor for Windows, with powerful editing features and quite a few unique abilities. It makes manipulating text fast and easy, and lets you focus on your writing by automating all the manual work. You can extend it in any language, and by supporting TextMate bundles, it allows you to tap into a huge and active community"

http://www.e-texteditor.com/

vfilby