0% found this document useful (0 votes)
0 views3 pages

HTML Code

The document contains multiple HTML code examples demonstrating various HTML tags and their usage, including head, body, formatting, anchor, subscript, superscript, font, list, marquee, and span tags. Each section showcases different elements and attributes to illustrate how they can be implemented in web development. Overall, it serves as a practical guide for understanding basic HTML structure and formatting options.

Uploaded by

gkuntalwad
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
0 views3 pages

HTML Code

The document contains multiple HTML code examples demonstrating various HTML tags and their usage, including head, body, formatting, anchor, subscript, superscript, font, list, marquee, and span tags. Each section showcases different elements and attributes to illustrate how they can be implemented in web development. Overall, it serves as a practical guide for understanding basic HTML structure and formatting options.

Uploaded by

gkuntalwad
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 3

1) Head Tag

<html>
<head> This is head tag demo
<title>This is title tag demo </title>
</head>
<body>
<h1>This is my first HTML Program</h1>
<h2>This is my first HTML Program</h2>
<h3>This is my first HTML Program</h3>
<h4>This is my first HTML Program</h4>
<h5>This is my first HTML Program</h5>
<h6>This is my first HTML Program</h6>
</body>
</html>

2) Format Demo
<html>
<head> This is head tag demo
<title>This is title tag demo </title>
</head>
<body>
<h1>This is my first HTML Program</h1>
<p> <b>this is paraegraph .</b> </p>
<p> <i>this is paraegraph .</i> </p>
<p> <u>this is paraegraph .</u> </p>
<p> <small>this is paraegraph .</small> </p>
<p> <strong>this is paraegraph .</strong> </p>
<p> O<sup>2</sup></p>
<p> O<sub>2</sub></p>
<p> <strike>this is college</strike></p>
<p> <big>this is college</big></p>
<pre width="80">
<p>jgcjfshdfsahfdsafsafjksdfjgdsjhgsd hjssalssalfsalkfsafklsafklskfsafsas
aasgfasfsafkjagkfgkjafasgskjfassf </p>
</pre>
</body>
</html>

3) Anchor tag
<html>
<body>
<p> This is use of anchor tag</p>
<a href="D:\dipa-html\font.html"> 1</a>
<br>
<a href="div-t.html"> click Here to open div demo</a>
</body>
</html>
4) Sub & sup tag
<html>
<p>this is college</p>
<div>this is my collge in pune</div>
<div > O<sub>2</sub></div>
<div > a<sup>2</sup></div>
</html>

5) Font Tag
<html>
<head><h1 align="center">Demo of font tag</h1></head>
<body>
<font size="16" face="Viner Hand ITC"color="pink">This is My City -Pune</font>
<br>
<font size="20" face="Lucida Sans Typewriter" color="red">SCOAC-Warje</font>
<font size="10" face="Times new roman" color="purple">This is My City
-Pune</font>
<br>
</body>
</html>

6) list Tag
<html>
<head> This is list tag demo
<title>This is title tag demo </title>
</head>
<body>

<p>Ordered List</p>
<ol type=1>
<li>BCA</li>
<li>BBA(CA)</li>
<li>BBA</li>
<li>BCom</li>
<li>MCom</li>
</ol>

<ol type=A>
<li>BCA</li>
<li>BBA(CA)</li>
<li>BBA</li>
<li>BCom</li>
<li>MCom</li></ol>

<p>UnOrdered List</p>
<ul type="circle">
<li>Pune</li>
<li>Mumbai</li>
<li>Satara</li>
<li>Karad</li>
<ul>
</body>
</html>

7)Marquee tag
<html>
<h1 align="center">Use of hr tag</h1>
<p>This is Pune City</p>
<h1 style="color:Red"> SCOAC-Warje</h1>
<br>
<marquee height="70%" direction="up">This is moveble data</marquee>
<br>
<marquee height="50%" direction="left">This is moveble data towords
down</marquee>
</html>

9)Span tag
<html>
<p>This is Pune City</p>
<span style="color:red">this is my collge in pune . Hi How R You? </span><br>
<span style="color:blue">this is my collge in pune . Hi How R You? </span><br>
<span style="color:orange">this is my collge in pune . Hi How R You? </span><br>
<span style="color:yellow">this is my collge in pune . Hi How R You? </span><br>
</html>

You might also like