HTML text Editors

Editors for HTML text

HTML files are text files, so any text editor can be used to make them.
Text editors are programmes that let you make changes to written text. To make a website, we have to write our code in a text editor.
You can directly download many different types of text editors, but the best text editors for beginners are Notepad (Windows) or TextEdit (Mac).
After you\’ve learned the basics, you\’ll be able to use other professional text editors like Notepad++, Sublime Text, Vim, etc., with ease.
We will use Notepad and sublime text editor in our tutorial. Here are some easy ways to use Notepad and sublime text to make your first web page.

Use Notepad to write HTML code. (Recommended for Beginners)

Notepad is a simple text editor that is good for people just starting out with HTML. It comes with all versions of Windows and is easy to get to from there.

Step 1: Open Notepad (Windows)

\"\"

Step 2: Write code in HTML

\"html-notepad\"

Step 3: Save the HTML file with an extension of either.htm or.html.

\"\"

Step 4: Open your web browser and go to the HTML page.

To run the HTML page, you have to go to where you saved the file and either double-click on the file or click on the \”Open with\” button.

\"HTML\"
Any browser can run an HTML file, but there are some tags that some browsers don\’t support.

Related Posts
Introduction to HTML

HTML Introduction HTML is the most common language used to mark up Web pages. What does HTML mean? Hyper Text Read more

What is HTML

HTML stands for Hyper Text Markup Language, which is a programming language used to make web pages and web apps. Read more

HTML Basic Examples

In this chapter, we\'ll show you some simple examples of HTML code. Don\'t worry if we use tags that you Read more

HTML Tags

Learn HTML Tags HTML tags are kind of like keywords that tell a web browser how to format and show Read more

HTML Elements

Elements make up an HTML file. These elements are what make web pages and tell you what content is on Read more

HTML Attributes

Attribute in HTML Attributes in HTML are special words that tell you more about an element. Attributes change the way Read more

HTML Headings

Headings in HTML The <h1> to <h6> tags are used to set up headings in HTML. <h1> shows which heading Read more

HTML Paragraphs

HTML Paragraphs A paragraph is a block of text that always starts on a new line. The HTML <p> element Read more

Scroll to Top