SlideShare ist ein Scribd-Unternehmen logo
1 von 35
HTML
H.M.D.S.B.Herath
WHAT IS HTML?

 HTML is a language for describing web pages.
 HTML stands for Hyper Text Markup Language
 HTML is not a programming language, it is a markup
        language
 A markup language is a set of markup tags
 HTML uses markup tags to describe web pages
HTML TAGS

 HTML markup tags are usually called HTML tags

 HTML tags are keywords surrounded by angle brackets like

   <html>

 HTML tags normally come in pairs like <b> and </b>

 The first tag in a pair is the start tag, the second tag is the end tag

 Start and end tags are also called opening tags and closing tags
HTML DOCUMENT EXAMPLE

<html>
     <body>
          This is my first paragraph.
     </body>
</html>
HTML DOCUMENT EXAMPLE

<html>
      <head>
            <title>My First Web</title>
      </head>
      <body>
            This is my first paragraph.
      </body>
</html>
HTML HEADINGS

 <h1>This is a heading 1</h1>
 <h2>This is a heading 2</h2>
 <h3>This is a heading 3</h3>
 <h4>This is a heading 4</h4>
 <h5>This is a heading5</h5>
 <h6>This is a heading 6</h6>
HTML LINES

<h1>This is a heading</h1>

<hr />
<h2>This is a heading</h2>

<hr />
<h3>This is a heading</h3>

<hr />
HTML COMMENTS




<!-- This is a comment -->
HTML TEXT FORMATTING

<b>Bold</b>        <small>small</small>

<i>Italic</i>      <strong>Strong</strong>

<u>Underline</u>   <sub>subscript</sub>

<big>big</big>     <sup>superscript</sup>
HTML LINE BREAKS




    <br> or <br />
H T M L PA R A G R A P H S




<p>This is a paragraph</p>
H T M L < F O N T > TA G



<font size="3" color="red">This is some text!</font>
<font size="2" color="blue">This is some text!</font>
<font face="verdana" color="green">This is some text!</font>
H T M L < C E N T E R > TA G




<center>This text will be centered.</center>
HTML LINKS

 <a href="http://www spmmv.sch.lk/" target="_blank">Visit
  spmmv.sch.lk!</a>

 <a href="page 01.html" target="_blank">Visit About Us </a>

 <a href="C:Documents and
  SettingsAdministratorDesktopfirst.html"
  target="_blank">Click here to visit first page</a>
HTML IMAGES



<img src="boat.gif" alt="Big Boat" />

<img src="pulpit.jpg" alt="Pulpit rock" width="304" height="228" />
H T M L TA B L E S - 1

<table border="1">
         <tr>
                 <td>row 1, cell 1</td>
                 <td>row 1, cell 2</td>
         </tr>
         <tr>
                 <td>row 2, cell 1</td>
                 <td>row 2, cell 2</td>
         </tr>
</table>
H T M L TA B L E S - 2

<table border="1">
           <tr>
                     <th>Header 1</th>
                     <th>Header 2</th>
           </tr>
           <tr>
                     <td>row 1, cell 1</td>
                     <td>row 1, cell 2</td>
           </tr>
</table>
H T M L TA B L E S - 3

<table border="1“ bgcolor=“red” width=“50%” Align=“left”>
          <caption>Monthly savings</caption>
          <tr>
                    <th>Month</th>
                    <th>Savings</th>
          </tr>
          <tr>
                    <td>January</td>
                    <td>$100</td>
          </tr>
</table>
H T M L TA B L E S - 4

<table border="1“width=“50%” >
            <thead>
                        <tr> <th>Month</th> </tr>
            </thead>
            <tbody>
                       <tr><td>January</td></tr>
                       <tr><td>February</td></tr>
            </tbody>
            <tfoot>
                       <tr><th>Sum</th> </tr>
            </tfoot>

</table>
H T M L TA B L E S - 5

<table border="1">
           <tr bgcolor=“red” align=“center”>
                      <td width=“20%”>Header 1</td>
                      <td width=“80%”>Header 2</td>
           </tr>
           <tr>
                      <td align=“right” height=“50”>row 1, cell 1</td>
                      <td valign=“top”>row 1, cell 2</td>
           </tr>
</table>
H T M L TA B L E S ‘ S PA N N I N G ’ – 6

<table border="1">
         <tr>
                 <td rowspan=“2”>row 1, cell 1</td>
                 <td>row 1, cell 2</td>
                 <td>row 1, cell 2</td>
         </tr>
         <tr>
                 <td colspan=“2”>row 2, cell 1</td>
         </tr>
</table>
H T M L TA B L E S ‘ PA D D I N G ’ - 7

<table border="1“ cellspacing=“15” cellpadding=“10”>
         <tr>
                 <td>row 1, cell 1</td>
                 <td>row 1, cell 2</td>
         </tr>
         <tr>
                 <td>row 2, cell 1</td>
                 <td>row 2, cell 2</td>
         </tr>
</table>
HTML LISTS

 Unordered Lists

       <ul>
                    <li>Coffee</li>
                    <li>Milk</li>
       </ul>
HTML LISTS

 Ordered Lists

       <ol>
                  <li>Coffee</li>
                  <li>Milk</li>
       </ol>
HTML LISTS

Nested List
     <ol>
               <li>Flower</li>
                      <ul>
                               <li>red</li>
                               <li>White</li>
                      </ul>
               <li>Fruits</li>
     </ol>
HTML LISTS

 Definition Lists
          <dl>
                     <dt>Coffee</dt>
                           <dd>- black hot drink</dd>
                     <dt>Milk</dt>
                           <dd>- white cold drink</dd>
          </dl>
HTML FRAMES

 Column frame

     <frameset cols="25%,75%">
            <frame src="frame_a.html" />
            <frame src="frame_b.html" />
     </frameset>
HTML FRAMES

 Row frame

     <frameset rows="*,*">
            <frame src="frame_a.html" />
            <frame src="frame_b.html" />
     </frameset>
HTML FRAMES

 Nesting frame
        <frameset cols="25%,75%">
              <frame src="frame_a.html" />
                      <frameset rows="*,*">
                      <frame src="frame_a.html" />
                      <frame src="frame_b.html" />
        </frameset>
HTML I FRAMES



<iframe src="demo_iframe.htm"
width="200" height="200"></iframe>
HTML FORMS AND INPUT

 HTML Forms

<form>
.
input elements
.
</form>
HTML FORMS AND INPUT

 Text Fields

<input type="text" />
HTML FORMS AND INPUT

 Password Field

<input type="password" />
HTML FORMS AND INPUT

 Submit Button

<input type="submit" />
HTML FORMS AND INPUT

 Submit Button

<input type="submit" />

Weitere ähnliche Inhalte

Was ist angesagt? (20)

HTML 5 Tables and Forms
HTML 5 Tables and FormsHTML 5 Tables and Forms
HTML 5 Tables and Forms
 
Tables and Forms in HTML
Tables and Forms in HTMLTables and Forms in HTML
Tables and Forms in HTML
 
Web design - Working with tables in HTML
Web design - Working with tables in HTMLWeb design - Working with tables in HTML
Web design - Working with tables in HTML
 
Html basics 7 table
Html basics 7 tableHtml basics 7 table
Html basics 7 table
 
HTML Tables in Omeka
HTML Tables in OmekaHTML Tables in Omeka
HTML Tables in Omeka
 
HTML Table Tags
HTML Table TagsHTML Table Tags
HTML Table Tags
 
HTML Tables
HTML TablesHTML Tables
HTML Tables
 
Web I - 03 - Tables
Web I - 03 - TablesWeb I - 03 - Tables
Web I - 03 - Tables
 
Web technology lab manual
Web technology lab manualWeb technology lab manual
Web technology lab manual
 
Session3 part2
Session3 part2Session3 part2
Session3 part2
 
html
htmlhtml
html
 
HTML Tables
HTML TablesHTML Tables
HTML Tables
 
Table structure introduction
Table structure introductionTable structure introduction
Table structure introduction
 
Frames tables forms
Frames tables formsFrames tables forms
Frames tables forms
 
HTML Tutorials
HTML TutorialsHTML Tutorials
HTML Tutorials
 
HTML
HTMLHTML
HTML
 
HTML basic
HTML basicHTML basic
HTML basic
 
Html 5-tables-forms-frames (1)
Html 5-tables-forms-frames (1)Html 5-tables-forms-frames (1)
Html 5-tables-forms-frames (1)
 
Css1
Css1Css1
Css1
 
Html tables
Html tablesHtml tables
Html tables
 

Andere mochten auch

How to study - Motivational facts
How to study - Motivational factsHow to study - Motivational facts
How to study - Motivational facts
Suresh Wenuka
 

Andere mochten auch (20)

Manava 6
Manava  6 Manava  6
Manava 6
 
Git exam short note
Git exam short note Git exam short note
Git exam short note
 
කාර්යාල ක්‍රම
කාර්යාල ක්‍රමකාර්යාල ක්‍රම
කාර්යාල ක්‍රම
 
Innovating Digital Education #ind15
Innovating Digital Education #ind15Innovating Digital Education #ind15
Innovating Digital Education #ind15
 
Computing in English Education #ind15
Computing in English Education #ind15Computing in English Education #ind15
Computing in English Education #ind15
 
ආර්ථිකව දියුණු රටක් ගොඩනගන්නේ කෙසේද?
ආර්ථිකව දියුණු රටක් ගොඩනගන්නේ කෙසේද?ආර්ථිකව දියුණු රටක් ගොඩනගන්නේ කෙසේද?
ආර්ථිකව දියුණු රටක් ගොඩනගන්නේ කෙසේද?
 
PHI class I application 2016
PHI class I application 2016PHI class I application 2016
PHI class I application 2016
 
Computer networks
Computer networksComputer networks
Computer networks
 
Study BIT-UCSC @ Aurora Computer Studies
Study BIT-UCSC @ Aurora Computer StudiesStudy BIT-UCSC @ Aurora Computer Studies
Study BIT-UCSC @ Aurora Computer Studies
 
Team building and team work (Sinhala)
Team building and team work (Sinhala)Team building and team work (Sinhala)
Team building and team work (Sinhala)
 
Data Structure and Algorithms
Data Structure and AlgorithmsData Structure and Algorithms
Data Structure and Algorithms
 
Html sinhala(By Prasanga Amila-UCSC)
Html sinhala(By Prasanga Amila-UCSC)Html sinhala(By Prasanga Amila-UCSC)
Html sinhala(By Prasanga Amila-UCSC)
 
IEEE754 32 Bit
IEEE754 32 BitIEEE754 32 Bit
IEEE754 32 Bit
 
How to study - Motivational facts
How to study - Motivational factsHow to study - Motivational facts
How to study - Motivational facts
 
Joomla හි User Registration ගැන දැන ගනිමු
Joomla හි User Registration ගැන දැන ගනිමුJoomla හි User Registration ගැන දැන ගනිමු
Joomla හි User Registration ගැන දැන ගනිමු
 
ඵලදායිව ඉගෙන ගන්නේ කොහොමද?
ඵලදායිව ඉගෙන ගන්නේ කොහොමද?ඵලදායිව ඉගෙන ගන්නේ කොහොමද?
ඵලදායිව ඉගෙන ගන්නේ කොහොමද?
 
Doing your higher studies the right way
Doing your higher studies the right wayDoing your higher studies the right way
Doing your higher studies the right way
 
HTML Web design english & sinhala mix note
HTML Web design english & sinhala mix noteHTML Web design english & sinhala mix note
HTML Web design english & sinhala mix note
 
ICT in Sinhala
ICT in SinhalaICT in Sinhala
ICT in Sinhala
 
ICT Students Presentations
ICT Students PresentationsICT Students Presentations
ICT Students Presentations
 

Ähnlich wie Html

Ähnlich wie Html (20)

Web Developement Workshop (Oct 2009 -Day 1)
Web Developement Workshop (Oct 2009 -Day 1)Web Developement Workshop (Oct 2009 -Day 1)
Web Developement Workshop (Oct 2009 -Day 1)
 
Html.pptx
Html.pptxHtml.pptx
Html.pptx
 
Session3 part2
Session3 part2Session3 part2
Session3 part2
 
HTML
HTMLHTML
HTML
 
Unit 1wt
Unit 1wtUnit 1wt
Unit 1wt
 
v4-html-table-210321161424.pptx
v4-html-table-210321161424.pptxv4-html-table-210321161424.pptx
v4-html-table-210321161424.pptx
 
01 HTML-Tables-1.pptx
01 HTML-Tables-1.pptx01 HTML-Tables-1.pptx
01 HTML-Tables-1.pptx
 
Unit 1wt
Unit 1wtUnit 1wt
Unit 1wt
 
Html&css lesson 2
Html&css lesson 2Html&css lesson 2
Html&css lesson 2
 
HTML (Hyper Text Markup Language) by Mukesh
HTML (Hyper Text Markup Language) by MukeshHTML (Hyper Text Markup Language) by Mukesh
HTML (Hyper Text Markup Language) by Mukesh
 
Lecture 5 html table
Lecture 5 html tableLecture 5 html table
Lecture 5 html table
 
Lecture-4.pptx
Lecture-4.pptxLecture-4.pptx
Lecture-4.pptx
 
Getting into HTML
Getting into HTMLGetting into HTML
Getting into HTML
 
Form & frame
Form & frameForm & frame
Form & frame
 
Web technology
Web technologyWeb technology
Web technology
 
HTML Basic
HTML BasicHTML Basic
HTML Basic
 
Lect# 1 html part ii
Lect# 1 html part iiLect# 1 html part ii
Lect# 1 html part ii
 
Unit 2 (it workshop)
Unit 2 (it workshop)Unit 2 (it workshop)
Unit 2 (it workshop)
 
basic knowledge abot html
basic knowledge abot htmlbasic knowledge abot html
basic knowledge abot html
 
Html and css
Html and cssHtml and css
Html and css
 

Kürzlich hochgeladen

Salient Features of India constitution especially power and functions
Salient Features of India constitution especially power and functionsSalient Features of India constitution especially power and functions
Salient Features of India constitution especially power and functions
KarakKing
 
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
ZurliaSoop
 
Spellings Wk 3 English CAPS CARES Please Practise
Spellings Wk 3 English CAPS CARES Please PractiseSpellings Wk 3 English CAPS CARES Please Practise
Spellings Wk 3 English CAPS CARES Please Practise
AnaAcapella
 

Kürzlich hochgeladen (20)

This PowerPoint helps students to consider the concept of infinity.
This PowerPoint helps students to consider the concept of infinity.This PowerPoint helps students to consider the concept of infinity.
This PowerPoint helps students to consider the concept of infinity.
 
80 ĐỀ THI THỬ TUYỂN SINH TIẾNG ANH VÀO 10 SỞ GD – ĐT THÀNH PHỐ HỒ CHÍ MINH NĂ...
80 ĐỀ THI THỬ TUYỂN SINH TIẾNG ANH VÀO 10 SỞ GD – ĐT THÀNH PHỐ HỒ CHÍ MINH NĂ...80 ĐỀ THI THỬ TUYỂN SINH TIẾNG ANH VÀO 10 SỞ GD – ĐT THÀNH PHỐ HỒ CHÍ MINH NĂ...
80 ĐỀ THI THỬ TUYỂN SINH TIẾNG ANH VÀO 10 SỞ GD – ĐT THÀNH PHỐ HỒ CHÍ MINH NĂ...
 
REMIFENTANIL: An Ultra short acting opioid.pptx
REMIFENTANIL: An Ultra short acting opioid.pptxREMIFENTANIL: An Ultra short acting opioid.pptx
REMIFENTANIL: An Ultra short acting opioid.pptx
 
How to Manage Global Discount in Odoo 17 POS
How to Manage Global Discount in Odoo 17 POSHow to Manage Global Discount in Odoo 17 POS
How to Manage Global Discount in Odoo 17 POS
 
Salient Features of India constitution especially power and functions
Salient Features of India constitution especially power and functionsSalient Features of India constitution especially power and functions
Salient Features of India constitution especially power and functions
 
TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...
TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...
TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...
 
Towards a code of practice for AI in AT.pptx
Towards a code of practice for AI in AT.pptxTowards a code of practice for AI in AT.pptx
Towards a code of practice for AI in AT.pptx
 
Introduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The BasicsIntroduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The Basics
 
How to Give a Domain for a Field in Odoo 17
How to Give a Domain for a Field in Odoo 17How to Give a Domain for a Field in Odoo 17
How to Give a Domain for a Field in Odoo 17
 
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
 
Kodo Millet PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...
Kodo Millet  PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...Kodo Millet  PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...
Kodo Millet PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...
 
Holdier Curriculum Vitae (April 2024).pdf
Holdier Curriculum Vitae (April 2024).pdfHoldier Curriculum Vitae (April 2024).pdf
Holdier Curriculum Vitae (April 2024).pdf
 
Spellings Wk 3 English CAPS CARES Please Practise
Spellings Wk 3 English CAPS CARES Please PractiseSpellings Wk 3 English CAPS CARES Please Practise
Spellings Wk 3 English CAPS CARES Please Practise
 
How to setup Pycharm environment for Odoo 17.pptx
How to setup Pycharm environment for Odoo 17.pptxHow to setup Pycharm environment for Odoo 17.pptx
How to setup Pycharm environment for Odoo 17.pptx
 
Python Notes for mca i year students osmania university.docx
Python Notes for mca i year students osmania university.docxPython Notes for mca i year students osmania university.docx
Python Notes for mca i year students osmania university.docx
 
ICT Role in 21st Century Education & its Challenges.pptx
ICT Role in 21st Century Education & its Challenges.pptxICT Role in 21st Century Education & its Challenges.pptx
ICT Role in 21st Century Education & its Challenges.pptx
 
HMCS Max Bernays Pre-Deployment Brief (May 2024).pptx
HMCS Max Bernays Pre-Deployment Brief (May 2024).pptxHMCS Max Bernays Pre-Deployment Brief (May 2024).pptx
HMCS Max Bernays Pre-Deployment Brief (May 2024).pptx
 
Interdisciplinary_Insights_Data_Collection_Methods.pptx
Interdisciplinary_Insights_Data_Collection_Methods.pptxInterdisciplinary_Insights_Data_Collection_Methods.pptx
Interdisciplinary_Insights_Data_Collection_Methods.pptx
 
Spatium Project Simulation student brief
Spatium Project Simulation student briefSpatium Project Simulation student brief
Spatium Project Simulation student brief
 
How to Create and Manage Wizard in Odoo 17
How to Create and Manage Wizard in Odoo 17How to Create and Manage Wizard in Odoo 17
How to Create and Manage Wizard in Odoo 17
 

Html

  • 2. WHAT IS HTML?  HTML is a language for describing web pages.  HTML stands for Hyper Text Markup Language  HTML is not a programming language, it is a markup language  A markup language is a set of markup tags  HTML uses markup tags to describe web pages
  • 3. HTML TAGS  HTML markup tags are usually called HTML tags  HTML tags are keywords surrounded by angle brackets like <html>  HTML tags normally come in pairs like <b> and </b>  The first tag in a pair is the start tag, the second tag is the end tag  Start and end tags are also called opening tags and closing tags
  • 4. HTML DOCUMENT EXAMPLE <html> <body> This is my first paragraph. </body> </html>
  • 5. HTML DOCUMENT EXAMPLE <html> <head> <title>My First Web</title> </head> <body> This is my first paragraph. </body> </html>
  • 6. HTML HEADINGS <h1>This is a heading 1</h1> <h2>This is a heading 2</h2> <h3>This is a heading 3</h3> <h4>This is a heading 4</h4> <h5>This is a heading5</h5> <h6>This is a heading 6</h6>
  • 7. HTML LINES <h1>This is a heading</h1> <hr /> <h2>This is a heading</h2> <hr /> <h3>This is a heading</h3> <hr />
  • 8. HTML COMMENTS <!-- This is a comment -->
  • 9. HTML TEXT FORMATTING <b>Bold</b> <small>small</small> <i>Italic</i> <strong>Strong</strong> <u>Underline</u> <sub>subscript</sub> <big>big</big> <sup>superscript</sup>
  • 10. HTML LINE BREAKS <br> or <br />
  • 11. H T M L PA R A G R A P H S <p>This is a paragraph</p>
  • 12. H T M L < F O N T > TA G <font size="3" color="red">This is some text!</font> <font size="2" color="blue">This is some text!</font> <font face="verdana" color="green">This is some text!</font>
  • 13. H T M L < C E N T E R > TA G <center>This text will be centered.</center>
  • 14. HTML LINKS  <a href="http://www spmmv.sch.lk/" target="_blank">Visit spmmv.sch.lk!</a>  <a href="page 01.html" target="_blank">Visit About Us </a>  <a href="C:Documents and SettingsAdministratorDesktopfirst.html" target="_blank">Click here to visit first page</a>
  • 15. HTML IMAGES <img src="boat.gif" alt="Big Boat" /> <img src="pulpit.jpg" alt="Pulpit rock" width="304" height="228" />
  • 16. H T M L TA B L E S - 1 <table border="1"> <tr> <td>row 1, cell 1</td> <td>row 1, cell 2</td> </tr> <tr> <td>row 2, cell 1</td> <td>row 2, cell 2</td> </tr> </table>
  • 17. H T M L TA B L E S - 2 <table border="1"> <tr> <th>Header 1</th> <th>Header 2</th> </tr> <tr> <td>row 1, cell 1</td> <td>row 1, cell 2</td> </tr> </table>
  • 18. H T M L TA B L E S - 3 <table border="1“ bgcolor=“red” width=“50%” Align=“left”> <caption>Monthly savings</caption> <tr> <th>Month</th> <th>Savings</th> </tr> <tr> <td>January</td> <td>$100</td> </tr> </table>
  • 19. H T M L TA B L E S - 4 <table border="1“width=“50%” > <thead> <tr> <th>Month</th> </tr> </thead> <tbody> <tr><td>January</td></tr> <tr><td>February</td></tr> </tbody> <tfoot> <tr><th>Sum</th> </tr> </tfoot> </table>
  • 20. H T M L TA B L E S - 5 <table border="1"> <tr bgcolor=“red” align=“center”> <td width=“20%”>Header 1</td> <td width=“80%”>Header 2</td> </tr> <tr> <td align=“right” height=“50”>row 1, cell 1</td> <td valign=“top”>row 1, cell 2</td> </tr> </table>
  • 21. H T M L TA B L E S ‘ S PA N N I N G ’ – 6 <table border="1"> <tr> <td rowspan=“2”>row 1, cell 1</td> <td>row 1, cell 2</td> <td>row 1, cell 2</td> </tr> <tr> <td colspan=“2”>row 2, cell 1</td> </tr> </table>
  • 22. H T M L TA B L E S ‘ PA D D I N G ’ - 7 <table border="1“ cellspacing=“15” cellpadding=“10”> <tr> <td>row 1, cell 1</td> <td>row 1, cell 2</td> </tr> <tr> <td>row 2, cell 1</td> <td>row 2, cell 2</td> </tr> </table>
  • 23. HTML LISTS  Unordered Lists <ul> <li>Coffee</li> <li>Milk</li> </ul>
  • 24. HTML LISTS  Ordered Lists <ol> <li>Coffee</li> <li>Milk</li> </ol>
  • 25. HTML LISTS Nested List <ol> <li>Flower</li> <ul> <li>red</li> <li>White</li> </ul> <li>Fruits</li> </ol>
  • 26. HTML LISTS  Definition Lists <dl> <dt>Coffee</dt> <dd>- black hot drink</dd> <dt>Milk</dt> <dd>- white cold drink</dd> </dl>
  • 27. HTML FRAMES  Column frame <frameset cols="25%,75%"> <frame src="frame_a.html" /> <frame src="frame_b.html" /> </frameset>
  • 28. HTML FRAMES  Row frame <frameset rows="*,*"> <frame src="frame_a.html" /> <frame src="frame_b.html" /> </frameset>
  • 29. HTML FRAMES  Nesting frame <frameset cols="25%,75%"> <frame src="frame_a.html" /> <frameset rows="*,*"> <frame src="frame_a.html" /> <frame src="frame_b.html" /> </frameset>
  • 30. HTML I FRAMES <iframe src="demo_iframe.htm" width="200" height="200"></iframe>
  • 31. HTML FORMS AND INPUT  HTML Forms <form> . input elements . </form>
  • 32. HTML FORMS AND INPUT  Text Fields <input type="text" />
  • 33. HTML FORMS AND INPUT  Password Field <input type="password" />
  • 34. HTML FORMS AND INPUT  Submit Button <input type="submit" />
  • 35. HTML FORMS AND INPUT  Submit Button <input type="submit" />