If you actually want to learn HTML, I recommend programs like Geany or Notepad++. I also suggest reading W3C Schools. And when you get more advanced, learn CSS. It makes a page source a lot cleaner: BAD| CODE | | <body bgcolor="#acdfac">...</body> |
This is actually deprecated.
BETTER
| CODE | | <body style="background-color: #acdfac;">...</body> |
This is good, but makes your page messier.
BEST page.html:
style.css:
| CODE | a:hover {color: #acdfac;} body {background-color: #acdfac;} |
The CSS file is included this way inside the <head> tag:
| CODE | | <link rel="stylesheet" type="text/css" href="path/to/style/sheet/propably/named/style.css" /> |
Yes, CSS requires more coding, but it's so clean...
--------------------
|