What is html?
·
HTML, stand for Hypertext Markup
Language, html is the standard markup language
that is used for creating and structuring the content on web pages. It forms
the backbone of the World Wide Web and is utilized to define the structure,
layout, and presentation of information on web pages.
· HTML uses tags to describe the elements of a web page, such as headings, paragraphs, images, links, tables, forms, and more. These tags are surrounded by angle brackets (< >) and are typically written in plain text. The tags are interpreted by web browsers to render the content in a structured and visually appealing way.
Ø Example
In the example above, the HTML code starts with a <!DOC TYPE html> declaration, indicating the version of HTML being used (HTML 5 in this case). The content of the web page is enclosed within the <html> tags. The <head> section contains meta-information about the page, such as the title displayed in the browser's title bar. The actual content of the page is placed within the <body> tags.
<h1> heading ,<p> paragraph,<img> image ,<b> bold ,etc are the some examples of html tags.
0 Comments