It HTML Practicals
It HTML Practicals
<TITLE> TAG
CODE:
<!doctype html>
<html>
<head>
<title>First Web Page</title>
</head>
<body>
</body>
</html>
2. <BODY> TAG
CODE:
<!doctype html>
<html>
<head>
<title>First Web Page</title>
</head>
<body>
Hello World
</body>
</html>
3. HEADING TAGS
CODE:
<!Doctype html>
<html>
<head>
<title>Heading</title>
</head>
<body>
<h1>Hello World</h1>
<h2>Hello World</h2>
<h3>Hello World</h3>
<h4>Hello World</h4>
<h5>Hello World</h5>
<h6>Hello World</h6>
</body>
</html>
4. HTML PARAGRAPHS
CODE:
<!doctype html>
<html>
<head>
<title>HTML Paragraphs</title>
</head>
<body>
CODE:
<!Doctype html>
<html>
<head>
<title>HTML basic tag</title>
</head>
<body>
<b>Hello World</b><br><br>
<i>Hello World</i><br><br>
<u>Hello World</u><br><br>
<s>Hello World</s><br><br>
<p>12<sup>th</sup></p><br><br>
<p>H<sub>2</sub>O</p><br><br>
<h1>Hello World</h1>
<p><strong>This is an important content</strong>,
and this is normal content</p><br><br>
</body>
</html>
6. <FONT > TAG
CODE:
<!Doctype html>
<html>
<head>
<title>HTML font tag</title>
</head>
<body>
<h1><font color="red" size="1" face="Brush Script MT">Hello
World</font></h1>
<h1><font color="green" size="2" face="arial,verdana">Hello
World</font></h1>
<h1><font color="blue" size="3" face="arial,verdana">Hello
World</font></h1>
<h1><font color="#1C9BDF" size="4" face="arial,verdana">Hello
World</font></h1>
<h1><font color="#fd521e" size="5" face="arial,verdana">Hello
World</font></h1>
<h1><font color="#be2276" size="6" face="arial,verdana">Hello
World</font></h1>
<h1><font color="#4c4f6b" size="7" face="arial,verdana">Hello
World</font></h1>
</body>
</html>
7. <HR> TAG
CODE:
<!DOCTYPE html>
<html>
<head>
<title>HTML hr tag</title>
</head>
<body>
<h1>Hello World</h1>
<hr size="10" color="red" width="100%">
<p>
This is an excellent school!!!
From the teachers to the students to the easy to
learn curriculum, my children like this school.
Through each of their workshops and lessons,
Sanskruti incorporates compassion into their
teaching standards, promotes values,
and develops a leadership attitude.
Everyone is so supportive and encouraging.
Adjustments are made as necessary to satisfy the students’ needs.
</p>
</body>
</html>
8. <PRE> TAG
CODE:
<!DOCTYPE html>
<html>
<head>
<title>HTML pre tag</title>
</head>
<body>
<pre> Hello
Sanskruti college</pre>
</body>
</html>
<ol>
<li>Coffee</li>
<li>Tea</li>
<li>Milk</li>
</ol>
</body>
</html>
9.1 Ordered List with Numbers
CODE:
<!DOCTYPE html>
<html>
<head>
<title>Ordered List with Numbers</title>
<head>
<body>
<ol type="1">
<li>Coffee</li>
<li>Tea</li>
<li>Milk</li>
</ol>
</body>
</html>
CODE:
<!DOCTYPE html>
<html>
<head>
<title>Ordered List with Uppercase Letters</title>
<head>
<body>
<ol type="A">
<li>Coffee</li>
<li>Tea</li>
<li>Milk</li>
</ol>
</body>
</html>
CODE:
<!DOCTYPE html>
<html>
<head>
<title>Ordered List with Lowercase Letters</title>
<head>
<body>
<ol type="a">
<li>Coffee</li>
<li>Tea</li>
<li>Milk</li>
</ol>
</body>
</html>
CODE:
<!DOCTYPE html>
<html>
<head>
<title>Ordered List with uppercase Roman Numbers</title>
<head>
<body>
</body>
</html>
CODE:
<!DOCTYPE html>
<html>
<head>
<title>Ordered List with Lowercase Roman Numbers</title>
<head>
<body>
</body>
</html>
CODE:
<!DOCTYPE html>
<html>
<head>
<title>Unordered list</title>
</head>
<body>
<ul type="circle">
<li>Orange</li>
<li>Apple</li>
<li>Grapes</li>
<li>Banana</li>
<li>Pineapple</li>
</ul>
<ul type="disc">
<li>Orange</li>
<li>Apple</li>
<li>Grapes</li>
<li>Banana</li>
<li>Pineapple</li>
</ul>
<ul type="square">
<li>Orange</li>
<li>Apple</li>
<li>Grapes</li>
<li>Banana</li>
<li>Pineapple</li>
</ul>
</body>
</html>
CODE:
<!DOCTYPE html>
<html>
<head>
<title>Discription List</title>
</head>
<body>
<dl>
<dt>Our Mission</dt>
<dd>To prepare children for the future.
To give the nation authentic leaders as products
of Sanskruti World School & Jr. College
To stand sturdy in difficulties,
face them and overcome them with patience.</dd>
<dt>Our Vision</dt>
<dd>To Excel in the realm of Education.
To provide best education facilities to
every child in the vicinity.
To enable children to march ahead with no fear
in their mind towards their goals.</dd>
<dt>Our value</dt>
<dd>To respect women and elders.
To follow and maintain the culture of our nation.
To do whatever you can for the welfare of the less privileged.
To do not give up without even trying.</dd>
</dl>
</body>
</html>
CODE:
<!DOCTYPE html>
<html>
<head>
<title>HTML img tag</title>
</head>
<body>
<img src="D:\11th-2023\11th Commerce\11th Commerce
B\Required\flower.JPG" height="500px" width="700px">
</body>
</html>
CODE:
<!Doctype html>
<html>
<head>
<title>marquee tag</title>
</head>
<body align="center">
<marquee>Default scrolling</marquee>
<marquee bgcolor="red">Background color</marquee>
</marquee>
<marquee scrolldelay="85" scrollamount="6">Default speed</marquee>
CODE:
<html>
<head>
<title>Anchor Tag</title>
</head>
<body>
<a href="https://www.google.co.in/">google</a>
</body>
</html>
CODE:
<html>
<head>
<title>Anchor Tag with target
property</title>
</head>
<body>
<a href="https://www.google.co.in/" target="_blank">Google</a>
</body>
</html>