HTML Editors

HTML Editors, It has a lot of editors like Notepad, Notepad++, EditPlus, Adobe Dreamweaver, CKEditor, Visual Editor,...that provide you to create HTML pages. but for learning HTML we prefer to Notepad editor becuase it makes you to remember your code and easy way to develop.
Create your first web page with notepad as below:
- Open notepad
- Write or copy HTML code into the notepad like this

<!DOCTYPE html>
<html>
<head><title>My First HTML Page</title>
</head>

<body>
<h1>Welcome to my heading H1</h1>
<p>Welcome to my paragrap</p>
</body>
</html>

Save the file on your computer, go to File -> Save as in notepad menu -> name the file ("page1.html") or other name ending with extension html or htm.