How to Learn HTML? How Long Does It Take to Learn HTML

HTML is the mandatory and very basic part of web design.  So, if someone wants to learn the HTML, normally the common question comes from the newbies that How long does it take to learn HTML? The simple answer is, it depends upon your understanding level. If you practice 2 hours a day, I think you will have a good command on HTML in 15 days. In this article, I will discuss, how to learn HTML and from where to start.

Learning and practicing HTML:

We need a text editor to start learning and practicing HTML. Windows users can use built-in notepad. But a professional text editor is highly recommended.

List of Text Editors to start learning and practicing HTML:
ActiveState Komodo
Alleycode HTML Editor
Aptana
Arachnophilia
Atom
BBEdit
BlueFish
Brackets
Coda
Codelobster
CoffeeCup HTML Editor
E Text Editor
Eclipse
EditPlus
Emacs
EmEditor
Geany
HTML-Kit
HomeSite
Notepad++
NetBeans IDE
NoteTab
PHPEdit
PhpStorm IDE
Programmer’s Notepad
PSPad
RJ TextEd
SciTE
Smultron
Sublime Text
skEdit
TED Notepad
TextMate
TextPad
TextWrangler
Tincta
TopStyle
UltraEdit
Vim
Web Architect
WebStorm
Write HTML Using Notepad or TextEdit
HTML can be edited by using professional HTML editors like:
•    Notepad++
•    Sublime Text
•    Brackets
However, we recommend a text editor like Notepad (windows) or TextEdit (Mac).

HTML tag structure:

<!DOCTYPE html>
<html>
<body>

<h1>My First Heading</h1>

<p>My first paragraph.</p>

</body>
</html>

 

Save the HTML Page:
Select File > Save as in the text editor menu. Save the file with .html or .htm extension.
Learning and practicing html
Your new webpage will look like

HTML editor

HTML Documents

All HTML documents must start with a type declaration: <!DOCTYPE html>. This type indicates the html5 version.

All HTML begins with <html> and ends with </html> tag.

The visible part of the HTML document those we see in web browser is between <body> and </body>.

 

 

2 thoughts on “How to Learn HTML? How Long Does It Take to Learn HTML”

Comments are closed.