0% found this document useful (0 votes)
18 views6 pages

HTML Notes

HTML PROGRAMMING NOTES....
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)
18 views6 pages

HTML Notes

HTML PROGRAMMING NOTES....
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

-HTML NOTES-

-Bhushan INgale-

FULL STACK DEVELEPMENT: -

Front End Database

Back End

Front End Back End Database


HTML Python MS-Access
CSS PHP Oracle
JS Java My-SQL
jQuery React JS SQL-Server
Bootstrap Angular SQLite

 What Is HTML: -

 HTML Is Stand for Hyper Markup Language.


 HTML Is Standard Markup Language for Creating Web Pages.
 HTML Describe the Structure Foe a Web Page.

Syntax:-
<html>
<head>
<title> MY WEB PAGE</title>
</head>
<body>
Hi, I AM BHUSHAN!!
</body>
</html>

Paired Tag Singular Tag

<html> </html> <b>


<head> </head> <i>
<title> </title> <u>
<body> </body> <hr>
<p> </p> <br>

 Heading Style:-.

<h1> </h1>
<h2> </h2>
<h3> </h3>
<h4> </h4>
<h5> </h5>
<h6> </h6>

 Formatting Tag:-

<b> - Bold Text


<strong> - Important Text
<i> - Italic Text
<em> - Emphasized Text
<mark> - Marked Text
<small> - Smaller Text
<del> - Deleted Text
<ins> - Inserted Text
<sub> - Subscript Text
<sup> - Superscript Text

 Basic HTML Program:-

<html>

<head>
<title> MY WEB PAGE</title>

</head>

<body>
Hi, I AM BHUSHAN!!
</body>
</html>

OUTPUT:-
Hi, I AM BHUSHAN!!

 Heading Style Program:-

<html>
<head>
<title> MY WEB PAGE</title>

</head>

<body>

<h1>HTML</h1>
<h2>HTML</h2>
<h3>HTML</h3>
<h4>HTML</h4>
<h5>HTML</h5>
<h6>HTML</h6>

</body>
</html>

 Formatting Tag:-

<html>

<head>
<title> MY WEB PAGE</title>

</head>

<body>
<p>
<b>PASSION</b> <i>SOFTWARE</i> <u>SOLUTION</u>
<br>
<hr>
<ins>JAVA IS PROGRAMMING LANGUAGE</ins>
<br>
<del>JAVA IS OBJECT ORIENTED LANGUAGE</del>
<br>
<em>JAVA IS SIMPLE LANGAUAGE</em>

<h1>H<sub>2</sub>S<sup>4</sup></h1>
</p>
</body>
</html>
 Body Tag Attributes:-

1. <body bgcolor = “red”>


</body>

2. <body background = “img path”>


</body>

 HTML Color Code:-

RGB = Red,Green,Blue
Red = #FF0000
Green = #00FF00
Blue = #0000FF

 How To Set Background Color & Text Color

<html>
<head>
<title>MY WEB PAGE</title>
</head>
<body bgcolor="#FFBF00" text="#6495ED">
<h1>BHUSHAN JAYANT INGALE </h1>
</body>

</html>

 How To Set Background Image

<html>
<head>
<title>MY WEB PAGE</title>
</head>
<body background = "w2w2.jpg">
<h1>BHUSHAN JAYANT INGALE</h1>

</body>
</html>

 HTML Lists:-
1.Unordered HTML Lists
2.Ordered HTML Lists
3.Description Lists

1. Unordered HTML Lists:-


An Unordered list starts with <ul> tag. Each
list item starts With the <li> tag.

You might also like