Jump to content

Favourite html editors...


Kcarson

Favourite html editor?  

676 members have voted

  1. 1. Favourite html editor?

    • [url=http://www.nvu.com]NVU[/url]
      14
    • [url=http://hapedit.free.fr/]hapeedit[/url]
      1
    • Notepad
      155
    • [url=http://www.flos-freeware.ch/notepad2.html]Notepad2[/url]
      32
    • [url=http://www.mpsoftware.dk]HTMLGate[/url]
      4
    • [url=http://www.textpad.com]TextPad[/url]
      13
    • [url=http://www.scintilla.org/SciTE.html]Scite[/url]
      4
    • [url=http://www.crimsoneditor.com]CrimsonEditor[/url]
      7
    • [url=http://www.chami.com/html-kit/download]HTMLkit[/url]
      21
    • [url=http://www.macromedia.com/software/dreamwe...8_datasheet.swf]Dreamweaver[/url]
      200
    • Editpad lite
      6
    • [url=http://notepad-plus.sourceforge.net/uk/site.htm]Notepad++[/url]
      152
    • [url=http://www.microsoft.com/frontpage/]Frontpage 2000/2003/XP[/url]
      17
    • [url=http://www.pspad.com]PSPad[/url]
      13
    • [url=http://www.nano-editor.org/]Nano[/url]
      1
    • [url=http://www.nedit.org/]NEdit (Nirvana Text Editor)[/url]
      1
    • [url=http://bluefish.openoffice.nl/index.html]Bluefish Web Development Studio[/url]
      7
    • [url=http://www.context.cx]conTEXT[/url]
      10
    • [url=http://www.evrsoft.com/]Firstpage 2000/2006[/url]
      4
    • [url=http://en.wikipedia.org/wiki/List_of_text_editors]Other... (follow link)[/url]
      87


Recommended Posts

  • 1 month later...

I think Dreamweaver is the best because we haven't a time to use notepad and type all the code with out any hints. Hints makes easy to code html tags and properties even in CSS. Now, we have frame works to make our work more efficient and easy so why should we wast our time in Notepad.

Edited by Hilal
Link to comment
Share on other sites

Hello ,

I have been using Notepad++ lately .

But I must say Bluefish new version 2.2 has come a long way since last update .

I just downloaded it yesterday .

And it does handle html5 very well .

http://bluefish.openoffice.nl/index.html

 

Scratch that , kept getting un-viewable htmlPage .

So I am looking at BlueGriffon .

...Vern

Edited by vmars316
Link to comment
Share on other sites

  • 2 weeks later...
  • 3 weeks later...
  • 4 weeks later...
  • 3 weeks later...

TextWrangler (+ Firefox for display) and a wide screen, for Macs. Geany (") for Ubuntu, but it lacks TextWrangler's convenient multi-file search/replace . Free.

Link to comment
Share on other sites

  • 1 month later...
  • 1 month later...
  • 2 months later...
  • 9 months later...
  • 2 weeks later...
  • 5 months later...
  • 3 months later...
17 hours ago, ScriptShow said:

I use the following editors: Notepad; but... KompoZer -  kompozer

Really, my favorite editor is...
 

<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="viewport" content="width=device-width">
<title>Code Tester</title>
</head>
<body>
<script type="text/javascript">
//<![CDATA[
function preview(){
temp=document.tester.tbox.value;
preWindow=window.open("about:blank", "preWin", "menubar=yes,resizable=yes");
preWindow.document.open();
preWindow.document.write(temp);
preWindow.document.close();
}
//]]>
</script>
<center>
<font face="helvetica" color="#000000">
<h2>< Code Tester ></h2>
<form name="tester">
<textarea rows="22" cols="88" wrap="physical" name="tbox" style="border:1px solid;overflow:auto"></textarea>
<br><hr width="720" size="1" color="#000000" noshade>
<input type="button" value="Test Code" onClick="preview()" style="border:1px solid;background:#FFFFFF;width:200px">
<input type="reset" value="Reset Code" style="border:1px solid;background:#FFFFFF;width:200px">
<br><hr width="720" size="1" color="#000000" noshade>
</form>
</font>
</center>
</body>
</html>

What I did years ago.
You can use it freely

Link to comment
Share on other sites

1 minute ago, ScriptShow said:

Really, my favorite editor is...
 


<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="viewport" content="width=device-width">
<title>Code Tester</title>
</head>
<body>
<script type="text/javascript">
//<![CDATA[
function preview(){
temp=document.tester.tbox.value;
preWindow=window.open("about:blank", "preWin", "menubar=yes,resizable=yes");
preWindow.document.open();
preWindow.document.write(temp);
preWindow.document.close();
}
//]]>
</script>
<center>
<font face="helvetica" color="#000000">
<h2>< Code Tester ></h2>
<form name="tester">
<textarea rows="22" cols="88" wrap="physical" name="tbox" style="border:1px solid;overflow:auto"></textarea>
<br><hr width="720" size="1" color="#000000" noshade>
<input type="button" value="Test Code" onClick="preview()" style="border:1px solid;background:#FFFFFF;width:200px">
<input type="reset" value="Reset Code" style="border:1px solid;background:#FFFFFF;width:200px">
<br><hr width="720" size="1" color="#000000" noshade>
</form>
</font>
</center>
</body>
</html>

What I did years ago.
You can use it freely

Without syntax highlighting, brace matching and auto indentation, a simple editor like that is not very useful. 

  • Like 1
Link to comment
Share on other sites

  • 2 months later...
  • 2 months later...
  • 6 months later...
On 1/15/2018 at 12:36 AM, Ingolme said:

Without syntax highlighting, brace matching and auto indentation, a simple editor like that is not very useful. 

But it's fast!

Have any of you tried AkelPad? I like it. It is simple, fast and if you need any of that options as highlighting, they are represented as plug-ins, so you can switch them on.

Link to comment
Share on other sites

  • 2 months later...
  • 1 month later...
On 11/13/2015 at 11:22 AM, ferren said:

TextWrangler (+ Firefox for display) and a wide screen, for Macs. Geany (") for Ubuntu, but it lacks TextWrangler's convenient multi-file search/replace . Free.

I am using Geany 1.35 on Fedora 28 (I really have to build my new Fedora 30 system).

It does what I need (so far) both for html and xml (for IETF Internet Drafts).

Add a Kensington Expert Optical Track ball with its scrolling wheel to move up and down in a doc easily, and I am set.

 

Link to comment
Share on other sites

  • 1 month later...

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...