HTML Editors
Learn HTML Using Notepad or TextEdit
Web pages can be created and modified by using professional HTML editors. However, for learning HTML we recommend a simple text editor like Notepad (PC) or TextEdit (Mac).
We believe that using a simple text editor is a good way to learn HTML.
Step 1: Open Notepad (PC)
Open Start > Programs > Accessories > Notepad.
Example
<!DOCTYPE html> <html> <body> <h1>Learn HTML</h1> <p>Using a simple text editor is the best way to learn.</p> </body> </html>
Click on the "Try it Yourself" button to see how it works.
Try it Yourself »