What is HTML? | HTML 2020
What is HTML?
- HTML is stand for HyperText Markup Language.
- HTML is a Markup language which is used for Web Development.
- HTML tell the browser how to display a page.
- HTML use tags start and end tags
- HTML is not a programming language.
How is the Structure of HTML
<html>
<head>
<title>What is HTML</title>
</head>
<body>
</body>
</html>
- <html> is the start tag of HTML and it is end with </html> at the bottom of page. .
- Every HTML tag is start with <Name of tag> and end with </Name of Tag>
- The second tag is <head> which is use for providing information about the page such as title etc.
- <title> tag is use to display the title of the page. it end with </title>
- The fourth is <body> tag. Whatever we watch on the web page, placed inside the <body> tag.
- <body> tag is end with </html>.
How to Run HTML Code?
- Open any editor (such as nodepad or nodeoad++) and type your code.
- Save your code with the .html extension.
- After saving the code open a browser and drag the the html file in to the browser.
- Drop the file to run your code.
- Congrats you have run your first HTML code.
I like it
ReplyDelete