WHAT IS HTML AND WHY IT IS USED :
HTML stands for Hypertext Markup Language. HTML forms a basic structure for any websites. HTML is standard language used for creating a website. It is necessary for anyone who want to build a website. HTML file has a extension .html. HTML file can be created in any text editor and executed in web browser. HTML5 is current major version of HTML
Basic structure of HTML file given bellow:
HTML tags are element names enclosed with angular brackets. Tags are not case sensitive. HTML page is enclosed within <html></html> tag. HTML page mainly contains following syntax. Html elements mainly contains opening tags, content and closing tags.
HTML tags are of two types :
• Container tags: tags which have opening and closing tags are called Container tags. This tags contains content. This tag can also contain other tags.
Eg. <body></body>
• Empty tags: tags which don’t have end closing tags are called Empty tags. This tags don’t have any content.
Eg. <br/>, <hr/>, <img/>.
(Common confusing questions in this topic?
Which text editor to follow?
You can use any text editor for HTML file, but visual studio code will be best choice. You will get to know all errors, recommendations in code and it is easy to use.
Why to learn HTML?
By the way HTML is used to create structure of website, it is easy to use and necessary for creating any website. )
Comments
Post a Comment