HTML
How to start HTML

How to start an html document ?
Learn HTML Using Notepad or TextEdit
How to start HTML ? Web pages are created and modified by using professional HTML editors. If you are learning HTML then use a simple text editor like Notepad for windows or TextEdit for Mac. Using a simple text editor is a good to learn HTML.
Follow these steps to create your first web page with Notepad or TextEdit.
Download HTML Editors
For Windows
1. Phase 5
2. Notepad++
For MAC
2. Brackets
Step 1
Open your HTML editor. (My example is using VS code)
Step 2
Write or copy paste HTML code into your editor.
<!DOCTYPE html>
<html>
<body>
<h1>Wellcom to W3Schoolweb</h1>
<p>My first paragraph.</p>
</body>
</html>

Step 3
Save the HTML Page. Save the file on your computer like below. use the name index.html

Step 4
View the HTML Page in Your Browser
