HTML 02 - Editors

HTML - Editors

To learn HTML we will recommend you to use a text editor like Notepad, because a Notepad will help you to understand the requirement of each tag, it will not suggest anything on its own that will be helpful to understand the HTML syntax.

 

What are HTML Editors?

HTML Editors are tools to write and run (in some cases) an HTML code. There are several HTML Editors available to the user (paid and unpaid both).

There are mainly two types of HTML editors - Text Based and WYSIWYG (What You See Is What You Get). Here in this tutorial we will work with text based editor.

 

Visual Studio Code(簡稱“VS Code”):

https://code.visualstudio.com/

VS Code is also a source-code editor developed by Microsoft. It supports Windows, Linux and macOS. The features include debugging support, syntax highlighting, code refactoring, intelligent code completion, etc.

VS Code

Features:

  • Provide autocompletion that helps us to code in better pace.
  • Multiple plugins that helps us to customize the editor and use unique features.
  • Inbuilt Git command support that help us to commit, marge, etc.
  • Integrated debugging tool support that help us to to debug any code we are working on.

 

Reasons to use an HTML Editor

Editors offer several features that Notepad can’t. Features that a professional editors can offer are listed below

  • Syntax Highlighting: Highlighting the tags, attributes will help us to verify the code visually.
  • Code Validation: This is the most required feature that a notepad misses, it will indicate the incorrect syntax and missing tags, incorrect attribute or quote for any attribute value.
  • Autocompletion: Autocompletion saves a lot of time to write the basic things like a dummy HTML structure, or multiple element requirements, etc.
  • Debugging Tools: A few HTML editors provide debugging tools to debug the code but in HTML there is no such scenario where it may be required. Because we have code validation that will help us to maintain the code if we make any incorrect move.

 

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章