tags:

views:

100

answers:

5

Hi can anyone recommend a good free html editor.

I want something that will let me wrap sections of code in <p> tags with a shortcut for example. It would make my life easier.

I'm a developer so I want something where I'll be writing most of the html by hand.

Thanks for the help,
Alex

+1  A: 

Netbeans has this functionality. It works with many languages including HTML. Get it from http://netbeans.org/ Its free

Shubh
+1  A: 

In Emacs' html-mode you're typing along, hit C-c RET, type your paragraph, hit C-c / to close the paragraph, and keep on hacking.

You can find this tip, and many more, here.

Frank Shearar
You can actually write a function to close any previous tag when you type "</". That said, I doubt I'd recommend Emacs unless you were planning on learning LISP too. Emacs isn't really an editor; it's a language for succinctly expressing editors.
Inaimathi
+2  A: 

Visual Web Developer 2010 Express is just great for beginners, and has this functionality.

TTT
Just in case you want everything else that can go with Visual Web Developer, you can use the web platform installer (http://www.microsoft.com/web/downloads/platform.aspx) and quickly download the tools.
Chris
Might want to add that it´s free as in beer.
Richard
A: 

Hi, you can use Bluefish. This is a free software text editor. The "Auto tag closing" is include in the software : http://bluefish.openoffice.nl/manual/ch07s02.html

Official website : http://bluefish.openoffice.nl/

Hope it will help you!

Michaël
A: 

Very simple, but with shortcuts for the most common XHTML blocks: Rejbrand Text Editor.

You press Alt+Enter to insert <p></p>; any selection will be included inside the tags. Ctrl+Enter inserts <br />, Ctrl+I inserts <li></li> etc. Ctrl+n inserts <hn></hn>.

Andreas Rejbrand