<?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 document presented | Student Projects</title>
	<atom:link href="https://studentprojects.in/tag/html-document-presented/feed/" rel="self" type="application/rss+xml" />
	<link>https://studentprojects.in</link>
	<description>Microcontroller projects, Circuit Diagrams, Project Ideas</description>
	<lastBuildDate>Sun, 27 Nov 2022 08:39:05 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.1.7</generator>
	<item>
		<title>HTML Document Structure</title>
		<link>https://studentprojects.in/software-development/html-document-structure/</link>
					<comments>https://studentprojects.in/software-development/html-document-structure/#respond</comments>
		
		<dc:creator><![CDATA[Shubhajna Rai]]></dc:creator>
		<pubDate>Sun, 27 Nov 2022 06:56:53 +0000</pubDate>
				<category><![CDATA[Software Development]]></category>
		<category><![CDATA[HTML document structure]]></category>
		<category><![CDATA[HTML tags]]></category>
		<category><![CDATA[HTML document presented]]></category>
		<guid isPermaLink="false">https://studentprojects.in/?p=9792</guid>

					<description><![CDATA[<p>How is the structure of an HTML document presented? The structure of an HTML document includes a number of tags. Tags are pieces of text that are enclosed in angle braces. A tag functions as a container for content or other HTML tags. The text below demonstrates the format of an HTML document: Be not</p>
<p>The post <a href="https://studentprojects.in/software-development/html-document-structure/">HTML Document Structure</a> first appeared on <a href="https://studentprojects.in">Student Projects</a>.</p>]]></description>
										<content:encoded><![CDATA[<p>How is the structure of an HTML document presented?</p>



<p>The structure of an HTML document includes a number of tags. Tags are pieces of text that are enclosed in angle braces. A tag functions as a container for content or other HTML tags. The text below demonstrates the format of an HTML document:</p>



<pre class="wp-block-code"><code lang="markup" class="language-markup">&lt;!DOCTYPE html&gt;
&lt;html&gt;
&lt;head&gt;
    &lt;title&gt;Document&lt;/title&gt;
&lt;/head&gt;
&lt;body&gt;
   &lt;!-- content --&gt;
&lt;/body&gt;
&lt;/html&gt;
</code></pre>



<p>Be not frightened. I&#8217;ll explain to you what is being depicted above.</p>



<p>NOTE: These are the five essential HTML tags.</p>



<pre class="wp-block-code"><code lang="markup" class="language-markup">&lt;!DOCTYPE html&gt;, &lt;html&gt;, &lt;head&gt;, &lt;title&gt;, &lt;body&gt;</code></pre>



<p>The web browser uses the!DOCTYPE&gt; declaration element to determine what version of HTML is being used in the content. The most recent version, HTML 5, is 5.</p>



<ul type="1"><li>&lt;html&gt;</li></ul>



<p>The &lt;html&gt; tag is the root of an HTML page</p>



<ul><li>&lt;head&gt;</li></ul>



<p>The &lt;head&gt; tag contains page metadata</p>



<ul><li>&lt;title&gt;Document&lt;/title&gt;</li></ul>



<p>The &lt;title&gt; tag contains the title of a page and is shown in the browser title bar</p>



<ul><li>&lt;/head&gt;</li></ul>



<p>The &lt;/head&gt; tag is closing of &lt;head&gt; tag</p>



<ul><li>&lt;body&gt;</li></ul>



<p>&lt;body&gt; tag is the main tag of HTML. It contains the main body of the page and is shown in the white part of the browser</p>



<ul><li>&lt;/body&gt;</li></ul>



<p>The &lt;/body&gt; tag is closing of &lt;body&gt; tag.</p>



<ul><li>&lt;/html&gt;</li></ul>



<p>The &lt;/html&gt; tag is closing of &lt;html&gt; tag.</p><p>The post <a href="https://studentprojects.in/software-development/html-document-structure/">HTML Document Structure</a> first appeared on <a href="https://studentprojects.in">Student Projects</a>.</p>]]></content:encoded>
					
					<wfw:commentRss>https://studentprojects.in/software-development/html-document-structure/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
