Read Aloud the Text Content
This audio was created by Woord's Text to Speech service by content creators from all around the world.
Text Content or SSML code:
WELCOME, TODAY WE WILL KNOW ABOUT TAG AND Different TYPES OF TAG. HTML TAG. Tags are instructions that are embedded directly into the text of a HTML document. Each HTML tag describes that the browser should do something instead of simply displaying the text. In HTML, the tags begin with (<) and end with (>). HTML tags can be of two types First . Paired Tags Second. Unpaired Tags. Paired Tags:A tag is said to be a paired tag if the text is placed between a tag and its companion tag. In paired tags, the first tag is referred to as Opening Tag and the second tag is referred to as Closing Tag. Example <i>This text is in italics, </i> Note: Here <i> is called opening tag, and </i> is called closing tag. Unpaired Tags: An unpaired tag does not have a companion tag or closing tag. Unpaired tags are also known as Singular or Stand Alone Tags. Example <br>, <hr>. Paired Tags. First.The HTML Tag: <HTML> and </HTML> tags are used to mark the beginning and end of an HTML document. This tag does not have any effect on appearance of document. This tag is used to make browsers and other programs know that this is an HTML document. Second.The HEAD Tag: The HEAD tag is used to define the document header. The <HEAD> tag contains information about the document,including its title, scripts. Third The TITLE Tag:Tag: The title element contains your document title and identifies its content in a global context The title is typically displayed in the title bar at the top of the browser window, but not inside the window itself. A title is also Type used to identify your page for search engines.Third. The TITLE Tag :The title element contains your document title and identifies its content in a global context The title is typically displayed in the title bar at the top of the browser window, but not inside the window itself. A title is also Type used to identify your page for search engines.Fourth. BODY Tag: The second and largest part of our HTML document is the body Well its heading le, <HEAD> </HEAD>. which contains the content of your document (displayed within the text area of your browser window). The Body tag defines the document's body. It contains all the contents of an HTML document, such as text, images lists, tables, hyperlinks etc. The tags explained in the following sections are used within the body of your HTML Document. Unpaired Tags.First .HTML (H1... H6 Tags):HTML has six levels of headings. numbered 1 through 6, with 1 being the largest. Headings are typically displayed +in larger and/or bolder fonts than normal body text. The first heading in each document should be tagged<H1>. Second. Breaking Lines -<BR>:Paragraphs correctly, you must put in special markers. Unlike the tags so far, these represent single actions that don't have a "beginning" or "end". They do not come in pairs. To simply end one line and jump to the next, use a line break, or <BR>.Third. Horizontal Rules <HR> Tag:Horizontal rules give you a way to separate sections of your document visually. The <HR> Tag produces a horizontal line spread across the width of the browser window.I HOPE YOU LIKE IT. END