Is there something other than Notepad to write my HTML code?

1

How can I write HTML code and save it so that it looks just like what I wrote? I used to use Notepad, but now when you save your code document, it moves all the lines one right after the other. It looks like a run-on sentence and is very hard to read. All of my spaces are gone. It didn't used to do this. Is there any other software that I can use to write my own codes and save so that it looks the same (with all my spaces for easier reading)?

Susan Alexander

Posted 2012-09-14T22:50:06.327

Reputation: 11

Notepad++ is the best. I tried Notepad once and about threw a fit! – L.B. – 2014-07-01T21:55:44.423

5

I suggest that you try a more friendly & functional text editor, such as Notepad++ or Sublime Text 2.

– amiregelz – 2012-09-14T23:02:03.350

Get gVim. All the cool kids use a vi-based editor. – Zoredache – 2012-09-15T00:39:11.443

If you want something more than just a text editor, you could check out Visual Studio Express 2012. It is free, and has a really decent editor for both HTML and JavaScript with intellisense. More information is available here: http://msdn.microsoft.com/en-us/library/dd537667.aspx#installing_visual_web_developer_express You will also probably want to direct your programing related questions over to http://www.stackoverflow.com

– Art – 2012-09-15T02:21:02.777

List of HTML editors – amiregelz – 2012-09-15T11:24:46.447

Answers

2

That sounds really odd. Maybe you disabled the word wrapping in Notepad? There might as well be something off with your linebreaks. A screenshot might be very helpful to solve this.

As you didn't name your operating system, I'm assuming you're talking about Windows Notepad. It's enough to write code, but you might want to have a look at one or two more advanced editors (both being freeware):

  • As alternatives, if you'd like it simple but powerful, go with Notepad++. This provides you with basic syntax highlighting (e.g. easier to see tags) and is perfectly fine if a text editor is all you need.

  • If you'd like a (in my opinion) very nice combination of source code highlighting as well as real time preview/wysiwyg editor for free, have a look at Visual Studio Express 2012 for Web. This offers you a text editor and additional controls, for example it's very comfortable to edit stylesheets with a GUI editor (picking settings, colors, etc.).

Mario

Posted 2012-09-14T22:50:06.327

Reputation: 3 685