web development

Web Development

Current Status
Not Enrolled
Price
Free
Get Started

OUTLINE:

HTML

  1. Basic Structure Tags
    • <!DOCTYPE html> – Document Type Declaration
    • <html> – Root Element
    • <head> – Metadata (Title, Meta tags, CSS & JS linking)
    • <body> – Content of the Webpage
  2. Text Formatting
    • <b> – Bold text
    • <strong> – Important text
    • <i> – Italic text
    • <em> – Emphasized text
    • <mark> – Marked text
    • <small> – Smaller text
    • <del> – Deleted text
    • <ins> – Inserted text
    • <sub> – Subscript text
    • <sup> – Superscript text
    • <u> – Underline
  3. Lists in HTML
    • Ordered List (<ol> and <li>)
    • Unordered List (<ul> and <li>)
    • Description List (<dl>, <dt>, <dd>)
  4. HTML Links – Syntax
    • The most important attribute of the <a> element is the href attribute, which indicates the link’s destination.
    • <link> – To link external resources
  5. HTML Table Tags
    • <table> – Defines a table
    • <th> – Defines a header cell in a table
    • <tr> – Defines a row in a table
    • <td> – Defines a cell in a table
  6. Form Tags
    • <form> – Create a form
    • <input> – User input field
    • <label> – Input label
    • <select> – Dropdown list
    • <option> – Dropdown option
    • <button> – Button
  7. Blockquote
  8. Media Tags
    • Audio
    • Video
  9. Image & Attributes

CSS

  1. Types of CSS
    • Inline CSS
    • Internal CSS
    • External CSS
  2. Properties
    • color – To change text color
    • background-color – To set background color of an element
    • font-size – To change text size
    • font-family – To change font style
    • margin – To define outer space of an element
    • padding – To adjust inner space of an element
    • border – To define the border of an element
    • width & height – To set dimensions of an element
    • display – To define layout type (Block, Inline, Flex, Grid, etc.)
    • position – To define positioning (Relative, Absolute)
  3. Box Model
    • Content – The actual content of the element
    • Padding – The space between content and border
    • Border – The boundary of the element
    • Margin – The space outside the element
  4. Flexbox & Grid (For layouts)
    • display: flex;
    • justify-content: center;
    • align-items: center;
    • gap – Adds space between flex items
  5. Background & Colors
  6. Borders & Outlines
  7. Typography & Text Styling