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

Coffee

Milk

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:

Coffee

Tea

Milk

Tables and the Border Attribute

Row 1, cell 1 Row 1, cell 2

Headings in a Table

Heading Another Heading

row 1, cell 1 row 1, cell 2

To display a table with borders, use the border attribute. Headings in a table are defined with the 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