<?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 Archives -</title>
	<atom:link href="https://mitindia.in/tag/html/feed/" rel="self" type="application/rss+xml" />
	<link>https://mitindia.in/tag/html/</link>
	<description></description>
	<lastBuildDate>Sat, 09 Jul 2016 12:16: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>

<image>
	<url>https://mitindia.in/wp-content/uploads/2023/03/cropped-android-chrome-512x512-1-32x32.png</url>
	<title>HTML Archives -</title>
	<link>https://mitindia.in/tag/html/</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>Hyper Text Markup Language</title>
		<link>https://mitindia.in/hyper-text-markup-language/</link>
					<comments>https://mitindia.in/hyper-text-markup-language/#comments</comments>
		
		<dc:creator><![CDATA[SKB]]></dc:creator>
		<pubDate>Tue, 28 Jun 2016 06:28:22 +0000</pubDate>
				<category><![CDATA[HTML]]></category>
		<category><![CDATA[Web]]></category>
		<guid isPermaLink="false">http://www.mitindia.in/?p=179</guid>

					<description><![CDATA[<p>it&#8217;s a method that adds markup to text, no more, no less. It can be compared to a Rich Text File or Word Document, with the difference that HTML can be coded by hand. An HTML document (like any other document) consists of &#8220;header&#8221; or &#8220;meta&#8221; information. This tells a program (the web browser) what [&#8230;]</p>
<p>The post <a href="https://mitindia.in/hyper-text-markup-language/">Hyper Text Markup Language</a> appeared first on <a href="https://mitindia.in"></a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>it&#8217;s a method that adds markup to text, no more, no less.</p>
<p><img decoding="async" class="alignright" src="http://leftsidedesign.ca/images/flat-html5.png" width="182" height="182" /></p>
<div>It can be compared to a Rich Text File or Word Document, with the difference that HTML can be coded by hand. An HTML document (like any other document) consists of &#8220;header&#8221; or &#8220;meta&#8221; information. This tells a program (the web browser) what to expect and how to deal with it.</div>
<p>The markup information in the actual document tells the browser to make text bold, italic, or part of a tabular range of data (inside a table).<br />
The original HTML was nothing more than some meta information and the most important element, the *anchor*, which inserts a &#8220;hyperlink&#8221; (which allows you to click on text, and it&#8217;ll take you to an other location) &#8211; and that&#8217;s where the name &#8220;hypertext&#8221; came from.</p>
<p>Here are some basic programs on HTML<br />
Heading Tag Demo</p>
<pre>&lt;html&gt;
&lt;body&gt;
&lt;h1&gt; Heading one font size: mostly used for web page main heading &lt;/h1&gt;
&lt;hr&gt; 
&lt;h2&gt; Heading two font size: used for sub heading  &lt;/h2&gt;
&lt;hr color=blue width="100%" size=4&gt;
&lt;/body&gt;
&lt;/body&gt;</pre>
<p><b>Font tag demo</b></p>
<pre>&lt;html&gt;
&lt;body&gt;
&lt;h1&gt; Main Heading goes here &lt;/h1&gt;
&lt;hr&gt; 
&lt;p&gt; &lt;font face="tahoma" size="20" color="red"&gt; Display text here &lt;/font&gt; &lt;/p&gt;
&lt;hr color=blue width="100%" size=4&gt;
&lt;/body&gt;
&lt;/body&gt;</pre>
<p><b>Using HTML Forms </b></p>
<pre>&lt;html&gt;
&lt;head&gt;
&lt;title&gt; Using Forms &lt;/title&gt;
&lt;/head&gt;
&lt;body&gt;
&lt;h1&gt; using Forms &lt;/h1&gt;
&lt;hr&gt;
&lt;form name=f1&gt;
Enter Your Name: &lt;input type=text name=t1 maxlength=20&gt;
&lt;br&gt;
Enter Email ID: &lt;input type=text name=t2 size=30 maxlength=10&gt;
&lt;/form&gt;
&lt;/body&gt;
&lt;/html&gt;</pre>
<p><b>Using Hyperlinks</b></p>
<pre>&lt;html&gt;
&lt;head&gt;
&lt;title&gt; Using Hyperlinks &lt;/title&gt;
&lt;/head&gt;
&lt;body&gt;
&lt;h1 align=center&gt; Using Hyperlinks &lt;/h1&gt;
&lt;a href="num.html"&gt; Open num file &lt;/a&gt;
&lt;hr&gt;
&lt;a href="123.html"&gt; open 123 web page &lt;/a&gt;
&lt;/body&gt;
&lt;/html&gt;</pre>
<p>Email and Image Hyperlinks</p>
<pre>&lt;html&gt;
&lt;head&gt;
&lt;title&gt; Using Image Hyperlinks &lt;/title&gt;
&lt;/head&gt;
&lt;h1&gt; Using Hyperlinks &lt;/h1&gt;
&lt;hr&gt;
&lt;A HREF="123.HTML"&gt; &lt;img src="abt.bmp"&gt; &lt;/a&gt;
&lt;hr&gt;
&lt;a href="num.html"&gt; &lt;img src="button.bmp"&gt; &lt;/a&gt;
&lt;h2&gt; Email Links &lt;/h2&gt;
&lt;a href="mailto: ravi.patil@yahoo.com"&gt; Mail Me &lt;/a&gt;
&lt;h1&gt; External Links &lt;/h1&gt;
&lt;a href="www.google.com"&gt; open google site &lt;/a&gt;
&lt;/body&gt;
&lt;/html&gt;</pre>
<p>Using Bullets or Un-ordered list [UL]</p>
<pre>&lt;html&gt;
&lt;head&gt;
&lt;title&gt;Inserting Bullets or Unordered List &lt;/title&gt;
&lt;/head&gt;
&lt;body&gt;
&lt;h1&gt; Inserting Bullets or Unordered List&lt;/h1&gt;
&lt;h3&gt; Games &lt;/h3&gt;
&lt;ul type="disc"&gt; 
&lt;li&gt; Cricket &lt;/li&gt;
&lt;li&gt; Football &lt;/li&gt;
&lt;li&gt; Billiards &lt;/li&gt;
&lt;li&gt; Tennis &lt;/li&gt; 
&lt;/ul&gt;
&lt;hr&gt;
&lt;ul type="circle"&gt;
&lt;li&gt; Cricket &lt;/li&gt;
&lt;li&gt; Football &lt;/li&gt;
&lt;li&gt; Billiards &lt;/li&gt;
&lt;li&gt; Tennis &lt;/li&gt; 
&lt;/ul&gt;

&lt;hr&gt;
&lt;ul type="square"&gt;
&lt;li&gt; Cricket &lt;/li&gt;
&lt;li&gt; Football &lt;/li&gt;
&lt;li&gt; Billiards &lt;/li&gt;
&lt;li&gt; Tennis &lt;/li&gt; 
&lt;/ul&gt;
&lt;/body&gt;
&lt;/html&gt;</pre>
<p>Using Numbering / Ordered list</p>
<pre>&lt;html&gt;
&lt;head&gt;
&lt;title&gt; Using Numbers &lt;/title&gt;
&lt;/head&gt;
&lt;body&gt;
&lt;h1&gt; Daily News Papers &lt;/h1&gt;
&lt;hr&gt;
&lt;ol type="i" start="1"&gt;
&lt;li&gt; The Hindu &lt;/li&gt;
&lt;li&gt; Deccan Herald &lt;/li&gt;
&lt;li&gt; Indian Express &lt;/li&gt;
&lt;/ol&gt;
&lt;h1&gt; Daily News Papers &lt;/h1&gt;
&lt;hr&gt;
&lt;ol type="I" start="1"&gt;
&lt;li&gt; The Hindu &lt;/li&gt;
&lt;li&gt; Deccan Herald &lt;/li&gt;
&lt;li&gt; Indian Express &lt;/li&gt;
&lt;/ol&gt;
&lt;h1&gt; Daily News Papers &lt;/h1&gt;
&lt;hr&gt;
&lt;ol type="a" start="1"&gt;
&lt;li&gt; The Hindu &lt;/li&gt;
&lt;li&gt; Deccan Herald &lt;/li&gt;
&lt;li&gt; Indian Express &lt;/li&gt;
&lt;/ol&gt;
&lt;h1&gt; Daily News Papers &lt;/h1&gt;
&lt;hr&gt;
&lt;ol type="A" start="1"&gt;
&lt;li&gt; The Hindu &lt;/li&gt;
&lt;li&gt; Deccan Herald &lt;/li&gt;
&lt;li&gt; Indian Express &lt;/li&gt;
&lt;/ol&gt;
&lt;h1&gt; Daily News Papers &lt;/h1&gt;
&lt;hr&gt;
&lt;ol type="1" start="1"&gt;
&lt;li&gt; The Hindu &lt;/li&gt;
&lt;li&gt; Deccan Herald &lt;/li&gt;
&lt;li&gt; Indian Express &lt;/li&gt;
&lt;/ol&gt;
&lt;/body&gt;
&lt;/html&gt;</pre>
<p>HTML Login form with java script validation</p>
<pre>&lt;html&gt;
&lt;head&gt;
&lt;script language="javascript"&gt;
function handle()
{
var str
str=document.f1.t1.value
if (str=="")
alert("Please enter user name")
document.f1.t1.select()
}
&lt;/script&gt;
&lt;/head&gt;
&lt;body&gt;
&lt;h1 align=center&gt; Login Screen &lt;/h1&gt; &lt;hR&gt;
&lt;form name=f1&gt;
Enter User Name: &lt;input type=text name=t1&gt; &lt;br&gt;
Enter Password: &lt;input type=password name=p1&gt;&lt;br&gt;
&lt;input type=button name=b1 value="LogIn" 

onClick='handle()'&gt; 
&lt;input type=Reset name=b2 value="Cancel"&gt; 
&lt;/form&gt;
&lt;/body&gt;
&lt;/html&gt;</pre>
<p>HTML Feedback form</p>
<pre>&lt;html&gt;
&lt;body bgcolor=silver&gt;
&lt;h1 align=center&gt; Feedback Form  &lt;/h1&gt;
&lt;hr color=yellow size=5&gt;
&lt;center&gt;
&lt;form name=f1&gt;
&lt;table border=4 cellspacing=4 cellpadding=4 bgcolor=yellow&gt;
&lt;tr&gt; 
&lt;td&gt; Enter Your name &lt;/td&gt;
&lt;td&gt; &lt;input type=text name=t1&gt; &lt;/td&gt; &lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt; Address &lt;/td&gt;
&lt;td&gt; &lt;textarea rows=3 cols=20&gt; &lt;/textarea&gt; &lt;/td&gt; &lt;/tr&gt;
&lt;tr&gt;&lt;td&gt; Gender &lt;/td&gt;
&lt;td&gt; &lt;input type=radio name=gen value=Male&gt; Male 
&lt;input type=radio name=gen value=Femal&gt; Female &lt;/td&gt; 

&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt; Select your country &lt;/td&gt;
&lt;td&gt; &lt;select name=s1&gt; 
&lt;option&gt; India 
&lt;option&gt; America 
&lt;option&gt; Japan
&lt;option&gt; Indonesia 
&lt;option&gt; China
&lt;/select&gt;
&lt;/td&gt; &lt;/tr&gt;
&lt;tr&gt; 
&lt;td&gt; Enter Your EmailID &lt;/td&gt;
&lt;td&gt; &lt;input type=text name=t2&gt; &lt;/td&gt; &lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt; Enter Phone No. &lt;/td&gt;
&lt;td&gt; &lt;input type=text name=t3&gt; &lt;/td&gt; &lt;/tr&gt;
&lt;tr&gt; &lt;td&gt; Enter Your Comments &lt;/td&gt;
&lt;td&gt; &lt;textarea rows=6 cols=20&gt; &lt;/textarea&gt;&lt;/td&gt; &lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt; &lt;input type=submit name=s2 value=Submit&gt; &lt;/td&gt;
&lt;td&gt; &lt;input type=reset name=r1 value=Reset&gt; &lt;/td&gt; &lt;/tr&gt;
&lt;/table&gt;
&lt;/form&gt;
&lt;/body&gt;
&lt;/html&gt;</pre>
<p>Creating 3 columned FRAME in html [frame help us to divide the window into multiple rectangular boxes and each boxes can hold different web pages]</p>
<pre>&lt;html&gt;
&lt;head&gt;
&lt;frameset cols="30%, 30%, 40%"&gt;
&lt;frame name=f1 src=tabing.html&gt;
&lt;frame name=f2 src=table2.html&gt;
&lt;frame name=f3 src=table3.html&gt;
&lt;/frameset&gt;
&lt;/head&gt;
&lt;/html&gt;</pre>
<p>Creating 2 columned frame</p>
<pre>&lt;html&gt;
&lt;head&gt;
&lt;frameset cols="40%, 60%"&gt;
&lt;frame name=f1 src=tab.html&gt;
&lt;frame name=f2 src=ulol.html&gt;
&lt;/frameset&gt;
&lt;/head&gt;
&lt;/html&gt;</pre>
<p>Nested FRAME in HTML [a frame inside another frame]</p>
<pre>&lt;html&gt;
&lt;head&gt;
&lt;frameset rows="20%, 80%"&gt;
&lt;frame name=f1 src=tabing.html&gt;
&lt;frameset cols="20%, 80%"&gt;
&lt;frame name=f2 src=table2.html&gt;
&lt;frame name=f3 src=table3.html&gt;
&lt;/frameset&gt;
&lt;/frameset&gt;
&lt;/head&gt;
&lt;/html&gt;</pre>
<p>Style sheets : inline style sheet example [collection of formatting features like text color, size and alignment etc are called style sheets. Style sheet can be inline or embedded from externally]</p>
<pre>&lt;html&gt;
&lt;head&gt;
&lt;style&gt;
h1{color:red}
h2{color:green}
h3{color:blue}
p{color:cyan}
&lt;/style&gt;
&lt;/head&gt;
&lt;body&gt;
&lt;h1&gt; This is Heading 1 font &lt;/h1&gt;
&lt;h2&gt; This is Heading 2 font &lt;/h2&gt;
&lt;h3&gt; This is Heading 3 font &lt;/h3&gt;
&lt;p&gt; This is Paragraph Tag &lt;/p&gt;
&lt;/body&gt;
&lt;/html&gt;</pre>
<p>Inline style sheet with ID [#] selector</p>
<pre>&lt;html&gt;
&lt;head&gt;
&lt;style&gt;
#raj{color:red}
#sam{color:green}
&lt;/style&gt;
&lt;/head&gt;
&lt;body&gt;
&lt;h1 id="sam"&gt; This is Heading 1 font &lt;/h1&gt;
&lt;h2 id="raj"&gt; This is Heading 2 font &lt;/h2&gt;
&lt;h3&gt; This is Heading 3 font &lt;/h3&gt;
&lt;p id="raj"&gt; This is Paragraph Tag &lt;/p&gt;
&lt;h1 id="raj"&gt; This is new heading &lt;/h1&gt;
&lt;/body&gt;
&lt;/html&gt;</pre>
<p>Contextual selector</p>
<pre>&lt;html&gt;
&lt;head&gt;
&lt;style&gt;
body{background:yellow; 
font-face:tahoma; font-style:bold}
ul{color:green}
ol{color:cyan}
&lt;/style&gt;
&lt;/head&gt;
&lt;body&gt;
&lt;h1&gt; HTML style tags &lt;/h1&gt;
&lt;ul type=circle&gt;
&lt;li&gt; India &lt;/li&gt;
&lt;li&gt; America &lt;/li&gt;
&lt;/ul&gt;
&lt;ol type="I" start="3"&gt;
&lt;li&gt;India &lt;/li&gt;
&lt;li&gt; America &lt;/li&gt;
&lt;/ol&gt;
&lt;/body&gt;
&lt;/html&gt;</pre>
<p>Applying style features with calling external style sheet [.css file]</p>
<pre>&lt;html&gt;
&lt;head&gt;
&lt;link rel="stylesheet" type="text/css" href="stc3.css"&gt;
&lt;/head&gt;
&lt;body&gt;
&lt;h1&gt; Hello world &lt;/h1&gt;
&lt;ol type="a" start="1"&gt;
&lt;li&gt; Software &lt;/li&gt;
&lt;li&gt; Hardware &lt;/li&gt;
&lt;/ol&gt;
&lt;ul type="square"&gt;
&lt;li&gt; Software &lt;/li&gt;
&lt;li&gt; Hardware &lt;/li&gt;
&lt;/ul&gt;
&lt;a href="aaaa.html"&gt; open file &lt;/a&gt;
&lt;h2&gt; This also heading 2 &lt;/h2&gt;
&lt;table border=4 cellspacing=2 cellpadding=2&gt;
&lt;tr&gt; 
&lt;td&gt; Software &lt;/td&gt; &lt;/tr&gt;
&lt;tr&gt;&lt;td&gt; Visual Basic &lt;/td&gt; &lt;/tr&gt;
&lt;tr&gt; &lt;td&gt; .Net Programming &lt;/td&gt; &lt;/tr&gt;
&lt;tr&gt; &lt;td&gt; Java Programming &lt;/td&gt; &lt;/tr&gt;
&lt;/table&gt;
&lt;/body&gt;
&lt;/html&gt;</pre>
<p>&nbsp;</p>
<p><a class="a2a_button_whatsapp" href="https://www.addtoany.com/add_to/whatsapp?linkurl=https%3A%2F%2Fmitindia.in%2Fhyper-text-markup-language%2F&amp;linkname=Hyper%20Text%20Markup%20Language" title="WhatsApp" rel="nofollow noopener" target="_blank"></a><a class="a2a_button_facebook" href="https://www.addtoany.com/add_to/facebook?linkurl=https%3A%2F%2Fmitindia.in%2Fhyper-text-markup-language%2F&amp;linkname=Hyper%20Text%20Markup%20Language" title="Facebook" rel="nofollow noopener" target="_blank"></a><a class="a2a_dd addtoany_share_save addtoany_share" href="https://www.addtoany.com/share#url=https%3A%2F%2Fmitindia.in%2Fhyper-text-markup-language%2F&#038;title=Hyper%20Text%20Markup%20Language" data-a2a-url="https://mitindia.in/hyper-text-markup-language/" data-a2a-title="Hyper Text Markup Language"><img src="https://static.addtoany.com/buttons/favicon.png" alt="Share"></a></p><p>The post <a href="https://mitindia.in/hyper-text-markup-language/">Hyper Text Markup Language</a> appeared first on <a href="https://mitindia.in"></a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://mitindia.in/hyper-text-markup-language/feed/</wfw:commentRss>
			<slash:comments>1</slash:comments>
		
		
			</item>
	</channel>
</rss>
