<?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>html tutorials for beginners Archives - Artificial Intelligence</title>
	<atom:link href="https://www.aiuniverse.xyz/tag/html-tutorials-for-beginners/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.aiuniverse.xyz/tag/html-tutorials-for-beginners/</link>
	<description>Exploring the universe of Intelligence</description>
	<lastBuildDate>Sun, 02 Apr 2023 23:43:06 +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>HTML Basic Structure</title>
		<link>https://www.aiuniverse.xyz/html-basic-structure/</link>
					<comments>https://www.aiuniverse.xyz/html-basic-structure/#respond</comments>
		
		<dc:creator><![CDATA[Maruti Kr.]]></dc:creator>
		<pubDate>Wed, 29 Mar 2023 04:59:09 +0000</pubDate>
				<category><![CDATA[HTML]]></category>
		<category><![CDATA[html basic]]></category>
		<category><![CDATA[html basic structure]]></category>
		<category><![CDATA[html document]]></category>
		<category><![CDATA[html tutorials]]></category>
		<category><![CDATA[html tutorials for beginners]]></category>
		<category><![CDATA[latest course of html]]></category>
		<category><![CDATA[structure of html]]></category>
		<guid isPermaLink="false">https://www.aiuniverse.xyz/?p=16235</guid>

					<description><![CDATA[<p>HTML Documents: All HTML documents must start with a document type declaration:&#160;&#60;!DOCTYPE html&#62;. The HTML document begins with&#160;&#60;html&#62;&#160;and ends with&#160;&#60;/html&#62;. The visible part of the HTML document <a class="read-more-link" href="https://www.aiuniverse.xyz/html-basic-structure/">Read More</a></p>
<p>The post <a href="https://www.aiuniverse.xyz/html-basic-structure/">HTML Basic Structure</a> appeared first on <a href="https://www.aiuniverse.xyz">Artificial Intelligence</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<p><strong>HTML Documents</strong>: </p>



<p>All HTML documents must start with a document type declaration:&nbsp;<code>&lt;!DOCTYPE html&gt;</code>.</p>



<p>The HTML document begins with&nbsp;<code>&lt;html&gt;</code>&nbsp;and ends with&nbsp;<code>&lt;/html&gt;</code>.</p>



<p>The visible part of the HTML document is between&nbsp;<code>&lt;body&gt;</code>&nbsp;and&nbsp;<code>&lt;/body&gt;</code>.</p>



<pre class="wp-block-code"><code>&lt;!DOCTYPE html&gt;
&lt;html&gt;
&lt;body&gt;

&lt;h1&gt;My First Heading&lt;/h1&gt;
&lt;p&gt;My first paragraph.&lt;/p&gt;

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



<p>Where, </p>



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



<li><code><strong>&lt;html&gt;</strong></code>&nbsp;html element define 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>



<h2 class="wp-block-heading">What is the difference between tags and elements ?</h2>



<p>Tag means the text surrounding by angular bracket is called tags.</p>



<p><strong>Ex:</strong> &lt;p>       &lt;/p></p>



<p>Element means the combination of tag and text is called elements.</p>



<p><strong>Ex:</strong> &lt;p> Welcome to html code&lt;/p></p>



<h2 class="wp-block-heading">HTML Attributes:</h2>



<p>Html attribute is a word which gives additional information about html tags or elements.</p>



<p>Always we have to write the attribute inside the opening tag only.</p>



<p><strong>Syntax:</strong> attribute name= &#8220;attribute value&#8221;</p>



<p>Example: align, style, href, src, alt, &#8230; etc.</p>



<p>Align: This attribute is used for left, right &amp; center.</p>



<pre class="wp-block-code"><code>&lt;!DOCTYPE html>
&lt;html lang="en">
&lt;head>
   
    &lt;title>Attribute&lt;/title>
&lt;/head>
&lt;body>

    &lt;p Align = "center">Good Morning&lt;/p>
    &lt;h1 style="color: crimson;" Align = "center">Hello World &lt;/h1>
    
&lt;/body>
&lt;/html></code></pre>



<p><strong>Output:</strong></p>



<figure class="wp-block-image size-large"><img fetchpriority="high" decoding="async" width="1024" height="576" src="https://www.aiuniverse.xyz/wp-content/uploads/2023/04/Capture-1024x576.png" alt="" class="wp-image-16294" srcset="https://www.aiuniverse.xyz/wp-content/uploads/2023/04/Capture-1024x576.png 1024w, https://www.aiuniverse.xyz/wp-content/uploads/2023/04/Capture-300x169.png 300w, https://www.aiuniverse.xyz/wp-content/uploads/2023/04/Capture-768x432.png 768w, https://www.aiuniverse.xyz/wp-content/uploads/2023/04/Capture.png 1366w" sizes="(max-width: 1024px) 100vw, 1024px" /></figure>
<p>The post <a href="https://www.aiuniverse.xyz/html-basic-structure/">HTML Basic Structure</a> appeared first on <a href="https://www.aiuniverse.xyz">Artificial Intelligence</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.aiuniverse.xyz/html-basic-structure/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>HTML Headings:</title>
		<link>https://www.aiuniverse.xyz/html-headings/</link>
					<comments>https://www.aiuniverse.xyz/html-headings/#respond</comments>
		
		<dc:creator><![CDATA[Maruti Kr.]]></dc:creator>
		<pubDate>Wed, 29 Mar 2023 04:38:57 +0000</pubDate>
				<category><![CDATA[HTML]]></category>
		<category><![CDATA[example of html heading]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[html basic heading tab]]></category>
		<category><![CDATA[html heading]]></category>
		<category><![CDATA[html heading tag]]></category>
		<category><![CDATA[html tutorials]]></category>
		<category><![CDATA[html tutorials for beginners]]></category>
		<category><![CDATA[what is html heading]]></category>
		<guid isPermaLink="false">https://www.aiuniverse.xyz/?p=16239</guid>

					<description><![CDATA[<p>HTML heading describe what type of heading given in html pages. There are six type of html headings using in html Syntax: &#60;h1&#62; This is heading 1 <a class="read-more-link" href="https://www.aiuniverse.xyz/html-headings/">Read More</a></p>
<p>The post <a href="https://www.aiuniverse.xyz/html-headings/">HTML Headings:</a> appeared first on <a href="https://www.aiuniverse.xyz">Artificial Intelligence</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<p>HTML heading describe what type of heading given in html pages.</p>



<p>There are six type of html headings using in html </p>



<p><strong>Syntax:</strong></p>



<p>&lt;h1&gt; This is heading 1 &lt;/h1&gt;</p>



<p>&lt;h2&gt; This is heading 2 &lt;/h2&gt;</p>



<p>&lt;h3&gt; This is heading 3 &lt;/h3&gt;</p>



<p>&lt;h4&gt; This is heading 4 &lt;/h4&gt;</p>



<p>&lt;h5&gt; This is heading 5 &lt;/h5&gt;</p>



<p>&lt;h6&gt; This is heading 6 &lt;/h6&gt;</p>



<p><strong>Example of html heading tags:</strong></p>



<pre class="wp-block-code"><code>&lt;!DOCTYPE html&gt;
&lt;html&gt;
&lt;head&gt;
        &lt;title&gt;HTML Deading Tags&lt;/title&gt;
&lt;/head&gt;
&lt;body&gt;
    &lt;h1&gt;This is heading tag 1&lt;/h1&gt;
    &lt;h2&gt;This is heading tag 2&lt;/h2&gt;
    &lt;h3&gt;This is heading tag 3&lt;/h3&gt;
    &lt;h4&gt;This is heading tag 4&lt;/h4&gt;
    &lt;h5&gt;This is heading tag 5&lt;/h5&gt;
    &lt;h6&gt;This is heading tag 6&lt;/h6&gt;
&lt;/body&gt;
&lt;/html&gt;</code></pre>



<p><strong>Output:</strong></p>



<figure class="wp-block-image size-large is-resized"><img decoding="async" src="https://www.aiuniverse.xyz/wp-content/uploads/2023/03/Capture-1-1024x530.png" alt="" class="wp-image-16240" width="840" height="434" srcset="https://www.aiuniverse.xyz/wp-content/uploads/2023/03/Capture-1-1024x530.png 1024w, https://www.aiuniverse.xyz/wp-content/uploads/2023/03/Capture-1-300x155.png 300w, https://www.aiuniverse.xyz/wp-content/uploads/2023/03/Capture-1-768x398.png 768w, https://www.aiuniverse.xyz/wp-content/uploads/2023/03/Capture-1-1536x795.png 1536w, https://www.aiuniverse.xyz/wp-content/uploads/2023/03/Capture-1-1170x606.png 1170w, https://www.aiuniverse.xyz/wp-content/uploads/2023/03/Capture-1.png 1901w" sizes="(max-width: 840px) 100vw, 840px" /></figure>



<p><strong>Note:</strong> if we write heading tag <strong>&lt;h7&gt;This is heading 7 &lt;/h7&gt;</strong>,   its display normal text because it is not predefine tags.</p>
<p>The post <a href="https://www.aiuniverse.xyz/html-headings/">HTML Headings:</a> appeared first on <a href="https://www.aiuniverse.xyz">Artificial Intelligence</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.aiuniverse.xyz/html-headings/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 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>
