Docsity
Docsity

Prepare for your exams
Prepare for your exams

Study with the several resources on Docsity


Earn points to download
Earn points to download

Earn points by helping other students or get them with a premium plan


Guidelines and tips
Guidelines and tips

PHP -Notes-Presentation, Lecture notes of Web Design and Development

Web Development in PHP Javascript, HTML and CSS

Typology: Lecture notes

2019/2020

Uploaded on 07/07/2020

cj-singh
cj-singh 🇮🇳

1 document

1 / 11

Toggle sidebar

This page cannot be seen from the preview

Don't miss anything!

bg1
HTML
pf3
pf4
pf5
pf8
pf9
pfa

Partial preview of the text

Download PHP -Notes-Presentation and more Lecture notes Web Design and Development in PDF only on Docsity!

HTML

TAGS

  • (^) Defines bold text
  • (^) Defines big text
  • (^) Defines italic text
  • (^) Defines small text
  • (^) Defines superscripted text
  • (^) Defines subscripted text
  • (^) Defines emphasized text
  • (^) Defines strong text

HTML LISTS

HTML provides a simple way to show unordered lists (bullet lists) or ordered

lists (numbered lists).

Unordered Lists

  • Coffee
  • Milk
  • Ordered Lists

    1. Coffee
    2. Milk
    3. UNORDERED HTML LIST - CHOOSE LIST ITEM MARKER Value Description disc Sets the list item marker to a bullet (default) circle Sets the list item marker to a circle square Sets the list item marker to a square none The list items will not be marked

      ORDERED HTML LIST - THE TYPE ATTRIBUTE Type Description type="1" The list items will be numbered with numbers (default) type="A" The list items will be numbered with uppercase letters type="a" The list items will be numbered with lowercase letters type="I" The list items will be numbered with uppercase roman numbers type="i" The list items will be numbered with lowercase roman numbers

      Example:

      1. Coffee
      2. Tea
      3. Milk
      4. Tables and the Border Attribute

        Row 1, cell 1 Row 1, cell 2
        **Headings in a Table** To display a table with borders, use the border attribute. Headings in a table are defined with the
        Heading Another Heading
        row 1, cell 1 row 1, cell 2
        tag.

        Cell Padding and Spacing The

        tag has two attributes known as cellspacing and cellpadding. Cellspacing is the pixel width between the individual data cells in the table (The thickness of the lines making the table grid).

        Cellpadding is the pixel space between the cell contents and the cell border.
        Defines a table caption