<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>tags Archives - Artificial Intelligence</title>
	<atom:link href="https://www.aiuniverse.xyz/tag/tags/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.aiuniverse.xyz/tag/tags/</link>
	<description>Exploring the universe of Intelligence</description>
	<lastBuildDate>Fri, 23 Aug 2024 10:00:31 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.9.1</generator>
	<item>
		<title>Why html is markup language?</title>
		<link>https://www.aiuniverse.xyz/why-html-is-markup-language/</link>
					<comments>https://www.aiuniverse.xyz/why-html-is-markup-language/#respond</comments>
		
		<dc:creator><![CDATA[Maruti Kr.]]></dc:creator>
		<pubDate>Wed, 29 Mar 2023 01:58:11 +0000</pubDate>
				<category><![CDATA[HTML]]></category>
		<category><![CDATA[exam of tags]]></category>
		<category><![CDATA[example of paired tags]]></category>
		<category><![CDATA[example of unpaired tags]]></category>
		<category><![CDATA[markup language]]></category>
		<category><![CDATA[markup language in html]]></category>
		<category><![CDATA[tags]]></category>
		<category><![CDATA[unpaired tags]]></category>
		<category><![CDATA[what do mean by tag]]></category>
		<category><![CDATA[what do meant by paired tags]]></category>
		<category><![CDATA[what is html tags]]></category>
		<category><![CDATA[what is markup language in html]]></category>
		<category><![CDATA[what is paired tab]]></category>
		<category><![CDATA[what is self closing tags]]></category>
		<category><![CDATA[what is tag]]></category>
		<category><![CDATA[what is unpaired tags]]></category>
		<category><![CDATA[Why html is markup language]]></category>
		<guid isPermaLink="false">https://www.aiuniverse.xyz/?p=16237</guid>

					<description><![CDATA[<p>In HTML, We are writing the code in tags format and all the tags are predefine that why html is markup language. Tag: Tag, The text which is surrounding by angular bracket is known as tags. There are two type of tag: Paired tag: In paired tag there is both tag, Opening tab and Closing <a class="read-more-link" href="https://www.aiuniverse.xyz/why-html-is-markup-language/">Read More</a></p>
<p>The post <a href="https://www.aiuniverse.xyz/why-html-is-markup-language/">Why html is markup language?</a> appeared first on <a href="https://www.aiuniverse.xyz">Artificial Intelligence</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<p>In HTML, We are writing the code in tags format and all the tags are predefine that why html is markup language.</p>



<p><strong>Tag:</strong> Tag, The text which is surrounding by angular bracket is known as tags.</p>



<p><strong>There are two type of tag:</strong></p>



<ul class="wp-block-list">
<li>Paired tag</li>



<li>Unpaired tag/ Self-Closing tag</li>
</ul>



<p><strong>Paired tag:</strong> In paired tag there is both tag, Opening tab and Closing tag is known as paired tags.</p>



<p><strong>Syntax:</strong>  &lt;tag&gt;   &lt;/tag&gt;</p>



<p><strong>Example of paired tag: </strong></p>



<p>&lt;html&gt;       &lt;/html&gt;</p>



<p>&lt;body&gt;      &lt;/body&gt;</p>



<p>&lt;head&gt;      &lt;/head&gt;</p>



<p>&lt;div&gt;          &lt;/div&gt;</p>



<p>&lt;p&gt;                &lt;/p&gt;</p>



<p>&lt;a&gt;              &lt;/a&gt;      </p>



<p>… etc.</p>



<p class="has-text-align-center">or</p>



<h2 class="wp-block-heading">Paired tags:</h2>



<p>Paired tags, or elements with both opening and closing tags, enclose content and define its boundaries. They consist of an opening tag, some content, and a closing tag.</p>



<p><strong>Example</strong>:</p>



<pre class="wp-block-code"><code>&lt;h1&gt;Welcome to My Website&lt;/h1&gt;
&lt;p&gt;This is a paragraph of text.&lt;/p&gt;
&lt;a href="https://example.com"&gt;Visit Example&lt;/a&gt;</code></pre>



<p>In these examples:</p>



<ul class="wp-block-list">
<li><code>&lt;h1></code> is the opening tag for a heading element, and <code>&lt;/h1></code> is the closing tag. The content &#8220;Welcome to My Website&#8221; is enclosed between them.</li>



<li><code>&lt;p></code> is the opening tag for a paragraph element, and <code>&lt;/p></code> is the closing tag. The content &#8220;This is a paragraph of text.&#8221; is enclosed between them.</li>



<li><code>&lt;a href="https://example.com"></code> is the opening tag for a hyperlink, and <code>&lt;/a></code> is the closing tag. The content &#8220;Visit Example&#8221; is the clickable text for the link.</li>
</ul>



<p>Paired tags help organize and structure the content on a webpage.</p>



<h2 class="wp-block-heading">Unpaired tag/ Self-Closing tag:</h2>



<p>Unpaired tags, or self-closing tags, are HTML elements that don&#8217;t require a separate closing tag. They are used for elements that don&#8217;t have any content between an opening and closing tag.</p>



<p><strong>Example</strong>:</p>



<pre class="wp-block-code"><code>&lt;img src="image.jpg" alt="Description of image"&gt;
&lt;br&gt;
&lt;hr&gt;</code></pre>



<p>In this example:</p>



<ul class="wp-block-list">
<li><code><strong>&lt;img></strong></code> is used to embed an image. It has attributes like <code>src</code> (source) and <code>alt</code> (alternative text). It doesn&#8217;t require a closing tag.</li>



<li><code><strong>&lt;br></strong></code> is used to insert a line break. It also doesn&#8217;t require a closing tag.</li>



<li><code><strong>&lt;hr></strong></code> is used to create a horizontal rule or line. It too is self-closing.</li>
</ul>



<p>In HTML5, the self-closing slash (<code>/</code>) is optional, so you may often see these tags written without it, like <strong><code>&lt;img src="image.jpg" alt="Description of image"></code>.</strong></p>



<p><strong>Note:-</strong> All the tag are predefine its means we can&#8217;t create, change and destroy the tag, Only we can use according to out requirement.</p>
<p>The post <a href="https://www.aiuniverse.xyz/why-html-is-markup-language/">Why html is markup language?</a> appeared first on <a href="https://www.aiuniverse.xyz">Artificial Intelligence</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.aiuniverse.xyz/why-html-is-markup-language/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
