Difference between revisions of "HTML 2"

From FreekiWiki
Jump to navigation Jump to search
m (block and inline elements)
(stubbed Images)
Line 1: Line 1:
 
= Images =
 
= Images =
 +
Images have two important numbers which must be observed when using images on webpages. The first, are the dimensions of the image, in pixels. The second, is the size on disk, in bytes.  For example; a common digital camera might take an image with dimensions of 2000x2000, and that file might be about 1MB.
  
 
= Lists =
 
= Lists =

Revision as of 03:54, 15 November 2013

Images

Images have two important numbers which must be observed when using images on webpages. The first, are the dimensions of the image, in pixels. The second, is the size on disk, in bytes. For example; a common digital camera might take an image with dimensions of 2000x2000, and that file might be about 1MB.

Lists

Tables

Blocks

HTML Block Elements

Block level elements normally start (and end) with a new line when displayed in a browser.

  • h1
  • p
  • ul
  • table

HTML Inline Elements

Block level elements normally start (and end) with a new line when displayed in a browser.

  • b
  • a
  • img
  • td

Forms

Miscellany