What is HTML?
What is HTML?
HTML(HyperText Markup Language)
Hello guys!! I am going to be explaining a few things and the basic body of HTML.
HTML is a markup language. It is used to create web browsers and websites. It can be assisted by other languages such as Cascading Style Sheets (CSS) and scripting languages such as JavaScript.
To do this programming you need to download notepad or potepad++,
etc.
I would recommend you to download notepad++.
An HTML element is set off from other text in a document by "tags, tags are inclosed in angular brackets ("<" and ">").
There is an opening and closing tag in HTML i.e. <html> and </html>.The program should always begin with <html> and end with </html>.
After this comes the head i.e. <head> and </head> there is an opening and a closing tag.
Next comes the title tag i.e <title> and </title> this tag is inside the head tag. In this, you should write whatever title you want for your webpage/website.
Finally comes the body tag i.e. <body> and </body>. This is where you should write anything that you to display on the screen.
Comments
Post a Comment