­
November 2016 - Yaar No Technology

Search the Whole World Here.,.,

Horizontal Lists

Horizontal Lists

HTML lists can be styled in many different ways with CSS. One popular way is to style a list horizontally, to create a menu: Example <!DOCTYPE html><html><head><style>ul {   ...
Nested HTML Lists

Nested HTML Lists

List can be nested (lists inside lists): Example <ul>  <li>Coffee</li>  <li>Tea    <ul>   ...
HTML Description Lists

HTML Description Lists

HTML also supports description lists. A description list is a list of terms, with a description of each term. The dl tag defines the description...
Ordered HTML List

Ordered HTML List

An ordered list starts with the ol tag. Each list item starts with the li tag. The list items will be marked with numbers by default: Example <ol>  <li>Coffee</li>  <li>Tea</li>  <li>Milk</li></ol> Try...
Unordered HTML List

Unordered HTML List

An unordered list starts with the ul tag. Each list item starts with the li tag. The list items will be marked with bullets (small...
HTML Table - Adding Border Spacing

HTML Table - Adding Border Spacing

Border spacing specifies the space between the cells. To set the border spacing for a table, use the CSS border-spacing property: Example table...
HTML Table - Left-align Headings

HTML Table - Left-align Headings

By default, table headings are bold and centered. To left-align the table headings, use the CSS text-align property: Example th {   ...

Ads by Google