Every beginner, who starts learning website development comes with this question “is HTML a programming language?”
Let me come up with big NO here. No, it’s not a programming language. If you look at the full form it says “Hypertext Mark-up language”.
Hypertext means document, data which is to be display to web user.
Mark-up stands for sequences of characters, symbols which is used to represent data in particular fashion. In HTML this mark-ups are nothing but tags, attributes, character references, entity references.
HTML don’t have any smartness like other programming languages such as PHP, Java to decide when to display data, how to store data, how to retrieve data, controlling number of repetition. HTML is only responsible for How to display this data. For e.g.
HTML don’t have any other competitor. It’s a client side language that means only browser knows how to render html pages. Currently we all using 5th stable version of HTML called as html5.
Here is one basic example of html
[html]
<!DOCTYPE html>
<html>
<head>
<title>Sample Title</title>
</head>
<body>
<h1>To display heading data</h1>
<p>To display paragraph data</p>
</body>
</html>
[/html]
To learn HTML + CSS visit itvedant
Thank you for contacting us !
Our Team will get in touch with you soon or call 9205004404 now to get answer for all your queries !
Like Our Facebook page to be up to date in industry !