Skip to content

Ch-sriram/Web-Development-I

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

49 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Web Development

References: Programming the World Wide Web (Robert W. Sebesta) | The Internet

Note: This Repository is currently being updated (as of June 2019)


Index

  1. HTML & XHTML

    1. Standard HTML Document Structure: HTMLDocStructure.html
    2. Basic Text Markup:
      1. Paragraphs: ParagraphTag.html
      2. Line Breaks & Preserving White Spaces: br&preTags.html
      3. Headings: Headings.html
      4. Block Quotations: blockquote.html
      5. Font Styles & Sizes: ibemstrongcodesubsup.html
      6. Character Entities, Horizontal Rules & Uses of the <meta> Element: CharEntiteshrmeta.html
    3. Images: ImageElement.html
    4. XHTML Document Validation: XHTMLDocValidation.html
    5. Hypertext Links:
      1. Links: Links.html
      2. Targets withing Documents: Target.html
    6. Lists:
      1. Unordered Lists: UnorderedList.html
      2. Ordered Lists: OrderedList.html
      3. Nested Lists: NestedList.html
      4. Definition Lists: DefinitionLists.html
    7. Tables:
      1. Basic Table: Table.html
      2. The rowspan and colspan Attributes: Rowspan&Colspan.html
    8. Forms:
      1. The <input> Element:
        1. Checkboxes: checkbox.html
        2. Radio Button: radio.html
      2. The <select> Element: menuSelectOption.html
      3. The <textarea> Element & The Action Buttons (Reset & Submit): textarea&ActionButtons.html
      4. Example of a Complete Form: OnlineShoppingForm.html
    9. Frameset: framesetExample.html
  2. HTML5

    1. The <audio> Element: audio.html
    2. The <video> Element: video.html
  3. HTML w.CSS

    1. Font Properties: fonts.html (Inline CSS) | fonts_externalCSS.html (External CSS)
    2. Text Decoration: text_decoration.html
    3. Text Spacing: TrackingLeadingSpacing.html
    4. List Properites: ulBulletStyling.html | olBulletStyling.html
    5. Allignment of Text: textIndentFloat.html
    6. Color: colorBgcolor.html
    7. The Box Model:
      1. Borders: border.html
      2. Margins & Padding: marpads.html
    8. Background Images: back_image.html
    9. The <span> and <div> Tags: spanDiv.html
    10. Conflict Resolution: cascade.html
  4. Basics of JavaScript

    1. Hello World!: hello.html
    2. Variables & Types: variables_types.html | variables_types.js
    3. Operators: operators.html | operators.js
    4. The Math Object: math_object.html | math_object.js
    5. The Number Object: number_object.html | number_object.js
    6. Type Conversion: type_conversion.html | type_conversion.js
    7. String Properties & Methods: string_object.html | string_object.js
    8. typeof Operator: typeof_operator.html | typeof_operator.js
    9. Date Object: date_object.html | date_object.js