HTML Editor
Editor
We can write html code in various editors like Notepad,TextEdit(MAC), Notepad++, VS Code and many more.
In This we learn HTML Programming using HTML Editor
Steps
1. Open Start2. Click on Programs
3. Click on Accessories
4. Open Notepad
Write Simple HTML Code
<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
</head>
<body>
<h1>My Heading</h1>
<p>My paragraph</p>
</body>
</html>
<html>
<head>
<title>Page Title</title>
</head>
<body>
<h1>My Heading</h1>
<p>My paragraph</p>
</body>
</html>
5. Now save the file with name index.htm
6. Run the page in Browser