+ 1
Why is HTML So easy for beginners
Tell us why is HTML so easy for beginners.
3 Answers
+ 3
That's because in HTML, there are no algorithms or logical constructs unlike in programming languages. There are only tags that has minimal syntax and attributes therefore it is easier to grasp.
+ 1
Because they are tags, they dont contain any logic that require brainwork. Straightforward, just look at where those tags starts and ends, and you could pretty much know what is on the page already.
by the way, html is not counted as a programming language, but it is a good thing to let beguinners to know how it feels to write language that a machine could understand, and pull them out from the whirlpool of WYSIWYG editors
0
HTML is straight forward. Want to write something on a webpage? This is all you have to do:
<p>Iâm luciel and I love programming</p>
Compared to something like Ruby:
begin
puts âI\âm luciel and I love programmingâ
end
HTML is made to be understand, especially since itâs the language of the worldâs largest community: the internet. Itâs made to be learned quick so anyone can create something amazing.