0% found this document useful (0 votes)
3 views12 pages

HTML !

The document contains various HTML examples demonstrating the use of tags for formatting text, creating lists, hyperlinks, and images. It also includes examples of CSS styles and citation elements. Overall, it serves as a guide for basic HTML and CSS usage.
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
3 views12 pages

HTML !

The document contains various HTML examples demonstrating the use of tags for formatting text, creating lists, hyperlinks, and images. It also includes examples of CSS styles and citation elements. Overall, it serves as a guide for basic HTML and CSS usage.
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd

<html>

<head><center>styles</center></head>
<title>aaa</title>
<body>
to do whole body we've ro write the tag in <>body<br>
<h4>whole line </h4>
<h3 style="background-color:tomato;">
jbsbnkfrseikbhicvsdkls ikhcfsi
</h3>
<h4> line </h4>
<h1 style="color:#808000">
kkkk</h1>
<br>border color
<h3 style="border:2px solid cyan ;">mmajlndsk</h3>

fontier family
<h4 style="font-family:Latha;"> heading </h4>
</body>
FONT SIZE
<p style="font-size:200%;">nsndskad</p>
font align
<h2 style="text-align:center;">Tiger</h2>
</html>

<html>
<head><center>comment tags</center>
<title>wtags</title>
<body>
hidden tag
<!--
address<br><br>
<address>
written by maddond<br> hidden -->
date: <br>
panihati, kol 44<br>
kol,India
</address>
<br><br>
cite for creative work<br>
<p>
The <cite> silent scream </cite> is an work of art</p>
<br><br> bi directional tag - bdo -is used for override the current text direction.<br><br>
<bdo dir="rtl">right to left</bdo>
</body>
</html>

Css color
<html>
<head>
<style>

a:hover,a:active
{
background-color:red;
}
</style>
</head>
<body>
<a herf ="[Link]" target="_blank">This is link</a>
</body>
</html>

<html>
<head><center>formats</center>
<title>ff</title>
<body>
b - bold
i-italic
strong- importent text
em- emphasized text
mark-marked text
small- smaller text
del -delted text
sub-subscript text
sup- superscript
ins- inserted text .
nkischk
</body>
</html>

<html>
<head><center>hyperlink</center></head>
<title>link</title>
<body>
<a href="[Link] </body><br>
</html>

Image floating
<html>
<head>
img
</head>
<body>
<p> img src- animated .gif tag - alt=" "</p>
<img src="E:\20220401_163808.jpg" alt="kk" style="float:right;width:42px;height:42px;">
image will float right to text .<br>
<img src="E:\bratatimobile [Link]" alt="kk" style="float:left;width:42px;height:42px;">
image will float left to text .<br>
</body>
</html>
Jump hyper
<html>
<head>
jump chps
</head>
<body>
<a href="#c11">jump to ch 11</a>
<h1>chapter 1</h1>
<p>this chap will explain nbkdsbj</p>
<h1>chapter 1</h1>
<p>this chap will explain nbkdsbj</p>
<h1>chapter 2</h1>
<p>this chap will explain nbkdsbj</p>
<h1>chapter 3</h1>
<p>this chap will explain nbkdsbj</p>
<h1>chapter 4</h1>
<p>this chap will explain nbkdsbj</p>
<h1>chapter 5</h1>
<p>this chap will explain nbkdsbj</p>
<h1>chapter 6</h1>
<p>this chap will explain nbkdsbj</p>
<h1>chapter 7</h1>
<p>this chap will explain nbkdsbj</p>
<h1>chapter 8</h1>
<p>this chap will explain nbkdsbj</p>

<h1>chapter 9</h1>
<p>this chap will explain nbkdsbj</p>

<h1>chapter 10</h1>
<p>this chap will explain nbkdsbj</p>

<h1 id="c11">chapter 11</h1>


<p>this chap will explain nbkdsbj</p>

<h1>chapter 12</h1>
<p>this chap will explain nbkdsbj</p>
<h1>chapter 13</h1>
<p>this chap will explain nbkdsbj</p>
</body>
</html>

OL UL

<html>
<head><center><h1>nn</center></h1></title></html>
<title>Class</title><br>
<body>
Listed iteam tag
<li>head</li>
<li>hand</li>
<li>migrain</li>
<h2>order list</h2>
<ol>
<li>jj</li>
<li> kk</li>
<li>ll</li>
<li>pp</li>
</ol>

<ol>
<li value="10">jj</li>
<li> kk</li>
<li>ll</li>
<li>pp</li>
</ol>

<ol type="A">
<li>jj</li>
<li> kk</li>
<li>ll</li>
<li>pp</li>
</ol>
<ol type="a">
<li>jj</li>
<li> kk</li>
<li>ll</li>
<li>pp</li>
</ol>
<ol type="i">
<li>jj</li>
<li> kk</li>
<li>ll</li>
<li>pp</li>
</ol>
<ol type="I">
<li>jj</li>
<li> kk</li>
<li>ll</li>
<li>pp</li>
</ol>
<h4>order list strating from a number </h4>
<ol start="100">
<li>jj</li>
<li> kk</li>
<li>ll</li>
<li>pp</li>
</ol>
<h4> reversed order list </h4>
<ol reversed>
<li>jj</li>
<li> kk</li>
<li>ll</li>
<li>pp</li>
</ol>

<h2>Unorder list</h2>
<ul>
<li>jj</li>
<li> kk</li>
<li>ll</li>
<li>pp</li>
</ul>
<h4>Circle</h4>
<ul style="list-style-type:circle;">
<li>jj</li>
<li> kk</li>
<li>ll</li>
<li>pp</li>
</ul>
<h4>square</h4>
<ul style="list-style-type:square;">
<li>jj</li>
<li> kk</li>
<li>ll</li>
<li>pp</li>
</ul>

<h4>None</h4>
<ul style="list-style-type:none;">
<li>jj</li>
<li> kk</li>
<li>ll</li>
<li>pp</li>
</ul>

<h2>description list</h2>
<dt>lion-></dt>
<dd>is known as king of Jungle .</dd>
</html>

Listed iteam tag


• head
• hand
• migrain
order list
[Link]
[Link]
[Link]
[Link]
[Link]
[Link]
[Link]
[Link]
[Link]
[Link]
[Link]
[Link]
[Link]
[Link]
[Link]
[Link]
[Link]
[Link]
[Link]
[Link]
[Link]
[Link]
[Link]
[Link]

order list strating from a number


[Link]
[Link]
[Link]
[Link]

reversed order list


[Link]
[Link]
[Link]
[Link]

Unorder list
•jj
•kk
•ll
•pp

Circle
•jj
•kk
•ll
•pp

square
•jj
•kk
•ll
•pp

None
•jj
•kk
•ll
•pp

description list
lion->
is known as king of Jungle .
<html>
<head><center>citation</center>
<title>wh</title>
<body>
<blockquote cite="[Link] to use another cite </blockquote>
<q>defines a short quotation</q>
abbreviation or an acronym<br>
<abbr title="world health organization">WHO</abbr>was founded to protect earth .
address<br><br>
<address>
written by maddond<br>
date: <br>
panihati, kol 44<br>
kol,India
</address>
<br><br>
cite for creative work<br>
<p>
The <cite> silent scream </cite> is an work of art</p>
<br><br> bi directional tag - bdo -is used for override the current text direction.<br><br>
<bdo dir="rtl">right to left</bdo>
</body>
</html>

citation
to use another cite

defines a short quotation abbreviation or an acronym


WHOwas founded to protect earth . address
written by maddond
date:
panihati, kol 44
kol,India

cite for creative work


The silent scream is an work of art

bi directional tag - bdo -is used for override the current text direction.

right to left

<html>
<head><center>styles</center></head>
<title>aaa</title>
<body>
to do whole body we've ro write the tag in <>body<br>
<h4>whole line </h4>
<h3 style="background-color:tomato;">
jbsbnkfrseikbhicvsdkls ikhcfsi
</h3>
<h4> line </h4>
<h1 style="color:#808000">
kkkk</h1>
fontier family
<h4 style="font-family:Latha;"> heading </h4>
</body>
FONT SIZE
<p style="font-size:200%;">nsndskad</p>
font align
<h2 style="text-align:center;">Tiger</h2>
</html>

You might also like