HTML PPT-1
HTML PPT-1
SUBMITTED TO :-
SUBMITTED BY:-
GUIDED BY:-
(Mrs. Thorat S.K
Mrs.Dhumal K.R)
SAMARTH POLYTECHINIC,BELHE
WHAT IS HTML
Ex:-
<html> = <HTML>
<p> = <P>
<head> = <HEAD>
<body> = <BODY>
HTML ATTRIBUTE
HTML attribute are used add to more
information to the tag
<html lang=“eng”>
HEADING TAG
• <h1>Hello world most important
• <h2>Hello world
• <h3>Hello world
• <h4>Hello world
• <h5>Hello world
• <h6>Hello world least important
ANCHOR TAG
This is used to add link to your page
Anchors enable a user to jump to a specific place on a Web
site
Ex:-
<B> bold </B>
<I> italic >/I>
<U> underline </U>
BIG OR SMALL TAG
Used to display big or small text on our page
Ex:-
<big> Big </big>
<small> Small </small>
HR TAG
Horizontal rular it is used to seperate content
Ex:-
<p>Html is hypertext markup language</p>
<hr>
<p>It is used to Create webpage </p>
SUBSCRIPT AND SUPERSCRIPT
Suberscript- text appears half a character below the normal line
Ex:-
<p> H <sub> 2 </sub> o </p>
1.Unordered list:-
2.Ordered list:-
UNORDERED LIST
• Unordered list show in bullets points
Ex:-
<ul>
<li>Mango</li>
<li>Apple</li>
<li>Banana</li>
</ul>
ORDERED LIST
Ex:-
<ol>
<li>Mango</li>
<li>Apple</li>
<li>Banana</li>
</ol>
TABLES IN HTML
Ex:-
<table border= "1">
<tr>
<td>Name</td>
<td>Roll No</td>
</tr>
<tr>
<td>Rashmika</td>
<td>129</td>
</tr>
</table>
CAPTION IN TABLE
Ex:-
<table border= "1">
<caption>Student data</caption>
<tr>
<td>Name</td>
<td>Roll No</td>
</tr>
<tr>
<td>Rashmika</td>
<td>129</td>
</tr>
</table>
THEAD AND TBODY IN
TABLE
<Form>
form content
</form>
ACTION IN FORM
<form action=“/action.php”>
FORM ELEMENT:INPUTE
<label for=“id2”>
<inpute type=“radio”value=“class X”name=class”id=“id2”>
</label>
CLASS & ID
<div id=“id2”>class=“group1”>
</div>
CHECKBOX
<label for=“id1”>
<input type=“checkbox”value=“class X” name="class”id=“id1”>
</label>
<label for=“id2”>
<input type=“checkbox”value=“class X”name="class”id=“id2”>
</label>
EXAMPLE: FORM
Text Box
Drop-down Menu
Radio Buttons
Checkboxes
Text Area
Reset Button
Submit
CREATING DROP-DOWN
MENUS
• To create a drop-down menu, type <SELECT
NAME=“name” SIZE=n MULTIPLE>
• Then type <OPTION VALUE= “value”>Label
• In this case the SIZE attribute specifies the height of the
menu in lines and MULTIPLE allows users to select more
than one menu option
EXAMPLE: DROP-DOWN
MENU
<B>WHICH IS FAVOURITE FRUIT:</B>
<SELECT>
<OPTION VALUE="MANGOES">MANGOES
<OPTION VALUE="PAPAYA">PAPAYA
<OPTION VALUE="GUAVA">GUAVA
<OPTION VALUE="BANANA"> BANANA
<OPTION VALUE="PINEAPPLE">PINEAPPLE
</SELECT>
THANK YOU