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
 
For MAC
 
 

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>

How to start HTML
How to start HTML

Step 3

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

How to start HTML

Step 4

View the HTML Page in Your Browser

How to start HTML
How to start HTML

What is CSS?

Leave a Reply

Your email address will not be published.

Back to top button