ads

Saturday, 20 February 2016

cascading style sheets(css) in html

css 

 

 

STYLE SHEETS HAVE A THREE TYPES:-

  1. INTERNAL CSS

  2. EXTERNAL CSS

  3. INLINE CSS 

    1.INTERNAL CSS:- CSS is also called internal css.its is included in a head part.

    2.EXTTERNAL CSS:- we have a need new classes in css for its use.

    3.INLINE CSS:-it sis used in a line.

     

    1. inline css:-

    input:-
    output:-

superscript in html

superscript(power)

input:-

subscript in html

Subscript (base) 

input:-
output:-

form in html

form 

input:-
output:-

Sunday, 7 February 2016

List in HTML



LIST 

List:- list is used to provide two level information.List is described by using <li>keyword.

1.Definition Term<DT>           2.Definition Data <DD>

1.Definition Term<DT>:-Heading of  description are mentioned which show about the detail.

2.Definition Data <DD>:-All the details of term are explained.

<html>

<head>glossary</head>

<body>

<dl>

<dt>Templates</dt>

<dd>A template determine the basic structure for a document and continous document.</dd>

<dt>Wizard</dt>

<dd>A feature that ask question and create items.</dd>

</dl>

</body>

</html> 

Output:-

List have a three types. these are written below:

1.Ordered list<ol>

2.Unordered list<ul>

3.Defination list<dl>