<?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>markup language Archives - Artificial Intelligence</title>
	<atom:link href="https://www.aiuniverse.xyz/tag/markup-language/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.aiuniverse.xyz/tag/markup-language/</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.4</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 <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>
		<item>
		<title>What is HTML</title>
		<link>https://www.aiuniverse.xyz/what-is-html/</link>
					<comments>https://www.aiuniverse.xyz/what-is-html/#respond</comments>
		
		<dc:creator><![CDATA[Maruti Kr.]]></dc:creator>
		<pubDate>Tue, 28 Mar 2023 07:30:33 +0000</pubDate>
				<category><![CDATA[HTML]]></category>
		<category><![CDATA[#PHP #Laravel #Training #Courses #HTML #CSS #JavaScript #MySOL #PHPwithLaravel]]></category>
		<category><![CDATA[example of html]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[html document example]]></category>
		<category><![CDATA[html tutorials]]></category>
		<category><![CDATA[html tutorials for beginners]]></category>
		<category><![CDATA[hypertext]]></category>
		<category><![CDATA[introducton of html]]></category>
		<category><![CDATA[markup language]]></category>
		<category><![CDATA[overview of html]]></category>
		<category><![CDATA[webpages]]></category>
		<category><![CDATA[what is html]]></category>
		<guid isPermaLink="false">https://www.aiuniverse.xyz/?p=16222</guid>

					<description><![CDATA[<p>HTML stands for Hyper Text Markup Language&#160;· HTML is the standard markup language for creating Web pages and Web Applications · HTML describes the structure of a <a class="read-more-link" href="https://www.aiuniverse.xyz/what-is-html/">Read More</a></p>
<p>The post <a href="https://www.aiuniverse.xyz/what-is-html/">What is HTML</a> appeared first on <a href="https://www.aiuniverse.xyz">Artificial Intelligence</a>.</p>
]]></description>
										<content:encoded><![CDATA[<div class="wp-block-image">
<figure class="aligncenter size-large is-resized"><img fetchpriority="high" decoding="async" src="https://www.aiuniverse.xyz/wp-content/uploads/2023/03/HTML5_logo-1024x1024.png" alt="" class="wp-image-16224" width="228" height="228" srcset="https://www.aiuniverse.xyz/wp-content/uploads/2023/03/HTML5_logo-1024x1024.png 1024w, https://www.aiuniverse.xyz/wp-content/uploads/2023/03/HTML5_logo-300x300.png 300w, https://www.aiuniverse.xyz/wp-content/uploads/2023/03/HTML5_logo-150x150.png 150w, https://www.aiuniverse.xyz/wp-content/uploads/2023/03/HTML5_logo-768x768.png 768w, https://www.aiuniverse.xyz/wp-content/uploads/2023/03/HTML5_logo-1536x1536.png 1536w, https://www.aiuniverse.xyz/wp-content/uploads/2023/03/HTML5_logo.png 2048w" sizes="(max-width: 228px) 100vw, 228px" /></figure>
</div>


<p>HTML stands for  <strong>Hyper Text Markup Language</strong>&nbsp;· HTML is the standard markup language for creating Web pages and Web Applications · HTML describes the structure of a Web page ·</p>



<p>The first version of HTML was written by Tim Berners-Lee in 1993. Since then, there have been many different versions of HTML. The most widely used version throughout the 2000&#8217;s was HTML 4.01, which became an official standard in December 1999. Currently another popular version is HTML5.&nbsp;</p>



<p><strong>Hyper Text:</strong> Hypertext is&nbsp;text which contains links to other texts. Whenever you click on a link which brings you to a new webpage, you have clicked on a hypertext. Hyper Text is a way to link two or more web pages with each other.</p>



<p><strong>Markup Language:</strong> A text, which is surrounding an  angular bracket is called markup language. </p>



<p><strong>Webpages:</strong> Webpage is nothing but a page which contain some information such as text, images, forms, tables, etc.</p>



<p><strong>Websites:</strong> Collection of webpages are known as websites.</p>



<p><strong>Example of HTML Documents:</strong></p>



<pre class="wp-block-code"><code>&lt;!DOCTYPE html&gt;
&lt;html&gt;
&lt;head&gt;
&lt;title&gt;Web Page Title&lt;/title&gt;
&lt;/head&gt;
&lt;body&gt;

&lt;h1&gt;My 1st Heading&lt;/h1&gt;
&lt;p&gt;My 1st paragraph.&lt;/p&gt;

&lt;/body&gt;
&lt;/html&gt;</code></pre>



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



<ul class="wp-block-list">
<li><code><strong>&lt;!DOCTYPE html&gt;</strong></code>&nbsp;It&#8217;s defines document types (Like HTML5 document).</li>



<li><code><strong>&lt;html&gt;</strong></code>&nbsp;It is the root element of an HTML page.</li>



<li><strong><code>&lt;head&gt;</code>&nbsp;</strong>Head elements contains meta information about the HTML page</li>



<li><strong><code>&lt;title&gt;</code>&nbsp;</strong>Title element specifies a title for the HTML page.</li>



<li><code><strong>&lt;body&gt;</strong></code>&nbsp;Body element defines the document&#8217;s body, and is a container for all the visible contents, such as headings, paragraphs, images, hyperlinks, tables, lists, etc.</li>



<li><strong><code>&lt;h1&gt;</code>&nbsp;</strong>Heading element defines a large heading.</li>



<li><code><strong>&lt;p&gt;</strong></code>&nbsp; Paragraph element defines a paragraph.</li>
</ul>
<p>The post <a href="https://www.aiuniverse.xyz/what-is-html/">What is HTML</a> appeared first on <a href="https://www.aiuniverse.xyz">Artificial Intelligence</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.aiuniverse.xyz/what-is-html/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
