<?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>what is html Archives - Artificial Intelligence</title>
	<atom:link href="https://www.aiuniverse.xyz/tag/what-is-html/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.aiuniverse.xyz/tag/what-is-html/</link>
	<description>Exploring the universe of Intelligence</description>
	<lastBuildDate>Tue, 28 Mar 2023 08:08:29 +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>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>
