In Association with Amazon.in   Flipkart

Wednesday, December 19, 2012

Example for HTML Image Map with Output

Example for HTML Image Map:
<body>
<img src="../My Pictures/images.jpg" width="392" height="194" border="0" usemap="#imglinks" />
<map name="imglinks">
<area shape="rect" coords="5,167,42,192" href="../My Pictures/cat-funny-animal.jpg">
<area shape="circle" coords="348,160,10" href="div-site.html">
<area shape="poly" coords="236,166,256,160,283,154,299,146,305,136,319,129,307,112,294,95,270,76,262,63,245,48,241,44,239,30,229,22,216,23,201,28,187,26,169,26,155,31,147,37,136,42,122,45,105,52,96,63,92,73,89,83,82,90,82,100,87,114,93,125,101,140,123,148,137,160" href="divscroll.html">
</map>
</body>


Tuesday, December 4, 2012

HTML Image And Marquee Tags Example With Output

<body>
<p><strong>Example Image Tag With No CSS Float Style:</strong></p>
<img src="images.jpg" alt="Rose Image" width="400" height="250" border="8" vspace="20" hspace="20"/>
<br />
<hr />
<br />
<p><strong>Example Image Tag With CSS Float Style:</strong></p>
<img src="images.jpg" alt="Rose Image" width="400" height="250" border="8" vspace="20" hspace="20" style="float:right" />
<p style="background-color:#FFFFCC; padding:12px; width:200px; height:auto">
<h2 align="center">IT Job Careers</h2>
<hr/>
<a href="page1.html#t1">HTML</a>
<br>
<a href="page2.html#t2">CSS</a>
<br>
<a href="page3.html#t3">JS</a>
<br>
<a href="page4.html#t4">PHP</a>
</p>
<hr />
<p><strong>Example For Marquee Tag:</strong></p>
<marquee behavior="alternate" width="400" height="250" bgcolor="#CCFF99" direction="up" loop="10" scrollamount="4" scrolldelay="600">
<pre>
HTML ----> Hyper Text Markup Language
CSS ----> Cascading Style Sheet
JS ----> Java Script
XML ----> Extensible Markup Language
PHP ----> Hypertext PreProcessor
</pre>
<img src="images.jpg" alt="Rose Image" width="400" height="200" border="8" vspace="20" hspace="20" />
</marquee>
</body>

Output:-

Example Image Tag With No CSS Float Style:
Rose Image


Example Image Tag With CSS Float Style:
Rose Image

IT Job Careers


HTML
CSS
JS
PHP

Example For Marquee Tag:
HTML ----> Hyper Text Markup Language
CSS ----> Cascading Style Sheet
JS ----> Java Script
XML ----> Extensible Markup Language
PHP ----> Hypertext PreProcessor
Rose Image

HTML Common Text Format Tags Example With Output

Some HTML Common Text Format Tags Example With Output

<body>
<p>
<strong>HTML</strong> Forms are used to select different kinds of user input. <strong>Forms</strong> are used to pass data to a server. An <strong>HTML</strong> form can contain input elements like text fields, checkboxes, radio-buttons, submit buttons and more. A form can also contain select lists, textarea, fieldset, legend, and label elements
</p>
<pre>
HTML ----> Hyper Text Markup Language
CSS ----> Cascading Style Sheet
JS ----> Java Script
XML ----> Extensible Markup Language
PHP ----> Hypertext PreProcessor
</pre>
<b>Bold</b> or <strong>Strong</strong>
<br />
<i>Italic</i> or <em>Emphasised</em>
<br>
<u>Under Line</u><br>
<del>Deleted</del> or <s>Strick Through</s>
<br>
A<sub>2</sub>
<br><br>
X<sup>3</sup>
<br/>
<abbr title="World Wide Web">WWW</abbr> or <acronym title="JS">Java Script</acronym>
<br>
</body>

Output:-

HTML Forms are used to select different kinds of user input. Forms are used to pass data to a server. An HTML form can contain input elements like text fields, checkboxes, radio-buttons, submit buttons and more. A form can also contain select lists, textarea, fieldset, legend, and label elements.

HTML     ---->   Hyper Text Markup Language
CSS       ---->    Cascading Style Sheet
JS          ---->    Java Script
XML       ---->    Extensible Markup Language
PHP       ---->    Hypertext PreProcessor
 
Bold or Strong
Italic or Emphasised
Under Line
Deletedor Strick Through
A2

X3
WWW or Java Script

Monday, December 3, 2012

HTML Headings with CSS Inline Style Example


HTML Headings with CSS Inline Styles Script:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <meta name="keywords" content="html,css,js,php,script,styles" />
    <meta name="description" content="HTML Headings with CSS Inline Styles Script and its output" />
    <title>Sample HTML</title>
    </head>
    <body>
    <h1 align="center" style="color:#7F9F55; background-color:#FCF; border:double; border-color:#AA7FFF; padding:10px;" >Welcome To ITJobCareers</h1>
   
    <hr align="center" width="50%" size="5" color="red" />
   
    <h2>HTML</h2>
    <h3>CSS</h3>
    <h4>JS</h4>
    <h5>PHP</h5>
    <h6>MySQL</h6>
     </body>
</html>

OutPut:-

Welcome To ITJobCareers


HTML

CSS

JS

PHP
MySQL

HTML All Tags Examples With Output

Saturday, December 1, 2012

HTML Form Object Tags With Example

Designing HTML Forms: HTML Forms are used to select different kinds of user input. Forms are used to pass data to a server. An HTML form can contain input elements like text fields, checkboxes, radio-buttons, submit buttons and more. A form can also contain select lists, textarea, fieldset, legend, and label elements.

The <form> tag is used to create an HTML form:


Ex:-
<html>
<body>
<form method="POST" action="process.php">


Username : <input type=text name=user id=u value=Ram> <br>


Password : <input type=password name=pwd id=p > <br>

Age: <input type=text size=2 name=age id=a><br>

Sex: <input type=radio name=sex id=s1 value=M>Male
<input type=radio name=sex id=s2 value=F>Female<br>

Choose your Favourite Sport:
<input type=checkbox name=interest id=v1 value=crick>Cricket
<input type=checkbox name=interest id=v2 value=tenis>Tennis
<br>

Select your Country:
<select name=country>
<option value=ind> India </option>
<option value=uk> England </option>
<option value=us> USA </option>
<option value=aus> Australia </option>
</select>
<br>

Favourite Holiday Spot : <br>
<select multiple size=3 name=hspot>
<option value=africa> America </option>
<option value=europe> Europe </option>
<option value=asia> Switzerland </option>
<option value=australia> Australia </option>
</select>
<br>

Complete Address: <br>
<textarea name=addrs rows=5 cols=50></textarea> <br>

Resume : <input type=file name=resume id=res> <Br>

<input type=reset name=clear id=c value=Reset>

<input type=submit value="Continue">

<input type=button name=close id=s value=close>
</form>
</body>
</html>

Note : In text box we can give attribute maxlength to restrict the length of text. In a Text Box Maximum we can give 160 characters. In List Box we can select multiple items with using attribute multiple.  Every Object should have name , id  ( names can be same but id s must be unique). If you select radio buttons or check boxes or combo boxes or list boxes then the value will be returned, so value attribute is recommended for these objects.


op>---
Username :
Password :
Age:
Sex: Male Female
Choose your Favourite Sport Cricket Tennis
Select your Country
Favourite Holiday Spot

Complete Address

Resume :

HTML TABLE's With Attributes and Examples

Designing Tables In HTML: HTML table model allows authors to arrange data -- text, preformatted text, images, links, forms, form fields, other tables, etc. -- into rows and columns of cells.

Example
<html>
        <head>
        </head>
        <body >
                <table border=1>
                        <tr>
                                <td> cell1  </td>
                                <td> cell2  </td>
                        </tr>
                        <tr>
                                <td> cell3  </td>
                                <td> cell4  </td>
                        </tr>
                </table>           
        </body>
</html>

Height and width are attributes of  <table>
Example
<table border=1 height=400 width=400>


Table Heading : Table heading will display in bold and in center
<html>
        <head>
        </head>     
        <body >
                <table border=1 >
                <caption > Employee Table </caption>
                        <tr>
                                <th> Eno  </th>
                                <th> Ename  </th>
                                <th> Esal  </th>
                        </tr>
                        <tr>
                                <td> 1  </td>
                                <td> Janardhan  </td>
                                <td> 20000  </td>
                        </tr>
                        <tr>
                                <td> 2  </td>
                                <td> Madhu  </td>
                                <td> 25000  </td>
                        </tr>
                </table>
        </body>
</html>


Other Table Tags

<thead>  will display on Top
<tbody>  will display in the Center
<tfoot>   will display Last

Example
<html>
      <head>   
      </head>
      <body >
              <table border=1 >
                      <tfoot>
                        <tr>
                                <td> 1  </td>
                                <td> Janardhan  </td>
                                <td> 20000  </td>
                        </tr>
                      </tfoot>
                        <tr>
                                <td> 2  </td>
                                <td> Madhu  </td>
                                <td> 25000  </td>
                        </tr>
                      <thead>
                      <tr>
                              <th> Eno  </th>
                              <th> Ename  </th>
                              <th> Esal  </th>
                      </tr>
                      </thead>
                      <tbody>
                      <tr>
                              <td> 3  </td>
                              <td> Suresh  </td>
                              <td> 3000  </td>
                      </tr>
                      </tbody>
              </table>
             
      </body>
     
</html>


Table Attributes
Bgcolor
Background
Cell padding   ( Displacement between border & content)
Cell spacing    ( Displacement between Individual cells)
Border
Height

Width
Align     ( Control table Position Horizontally)
Valign   ( Control table Position Vertically)


Examples
        1)        <table  bgcolor=red  >          
        2)     <table  background="sunset.jpg" >
              
If you give both bgcolor and background for a single table then high Priority is given for  background

<table bgcolor=red background="sunset.jpg"  >
<table border=10  >
<table border=10 cellpadding=50 >

<table border=10 cellspacing=50 >
<table border=10 align=right >

<table border=10 align=center >


 Valign will not work in HTML so we have to write CSS coding instead of Valign

EX : <table border=10 style="position:absolute;top:200;left:150" >
Attributes of TD
Bgcolor
Background
Width
Height
Col span
Row span
Align        ( left  ,  right  ,  center )
Valign      (  Top ,  middle  , bottom)

Example 1
<table border=10  >
                    <tr>
                            <td bgcolor=red>  1  </td>
                            <td background="sunset.jpg"> Siva  </td>
                            <td height =200 width = 200> 20000  </td>
                    </tr>
                    <tr>
                            <td> 2  </td>
                            <td> Brahma  </td>
                            <td> 25000  </td>
                    </tr>
    </table>

For Height complete Row will be affected. For Width complete Column will be affected

Example  2
<table border=10>      
                     <tr>
                              <td bgcolor=red>               1  </td>
                              <td background="sunset.jpg"> Vishnu  </td>
                              <td height =200 width = 200> 20000  </td>
                      </tr>
                      <tr>
                              <td align=right height=100 width=100>  2  </td>
                              <td align=center  width=100>                  Lakshmi  </td>
                              <td valign=top     width=100 >                    25000  </td>
                      </tr>
              </table>           


Table colspan and rowspan :
Example  3
<table border=1 height=300 width=300 >
                      <tr>
                              <td>                      Cell1  </td>
                              <td colspan=2>     Cell2  </td>                             
                      </tr>
                      <tr>
                              <td rowspan=2>    Cell4  </td>
                              <td>                       Cell5  </td>
                              <td>                       Cell6  </td>
                      </tr>
                      <tr> <td colspan=2>      Cell7  </td> </tr>
              </table>

Table with in Table
<html>
      <head>
     
      </head>
     
      <body >
              <table border=1 height=300 width=300>
                      <tr>
                              <td> <table border=1>
                                      <tr>
                                           <td> cell5  </td>
                                           <td> cell6  </td>
                                      </tr>
                                     
                                      <tr>
                                           <td> cell7  </td>
                                           <td> cell8  </td>
                                      </tr>
                                   </table>
                                 
                              </td>
                              <td> cell2  </td>
                      </tr>
                      <tr>
                              <td> cell3  </td>
                              <td> cell4  </td>
                      </tr>
              </table>
      </body>  
</html>

HTML Inline Frame: ( Iframe Tag )

HTML Inline Frame: ( Iframe Tag )
We can design a frame in body with using inline frame.

Example
<html>
        <head>    
        </head>
        <body>
                <p>This is a Paragraph</p>
                <ol>
                        <li> Oracle </li>
                        <li> Informix </li>
                </ol>
                <iframe src="a.html" width=200 height=50>  </iframe>
        </body>
</html>

HTML Frameset And Frame Tags

HTML Frames:
Frames used to Open multiple html pages in a single browser window.
Frames should not be written in <body>

Example
<html>
        <head> 
        </head>
        <frameset rows="20%,50%,30%">
        <frame src="a.html">
        <frame src="b.html">
        <frame src="c.html">
        </frameset>
</html>

Example
<html>
        <head>   
        </head>
        <frameset rows="50%,50%">
        <frame src="a.html" noresize="noresize">
                <frameset cols="50%,50%">
                <frame src="b.html">
                <frame src="c.html">
                </frameset>
        </frameset>
</html>

Note : If the browser is not supporting frames then  <noframes> will Execute.

 <noframes>
        <body>
        <p> Upgrade your browser to see this information </p>
        </body>
</noframes>


Frame Target :
<html>
        <head>    
        </head>
        <frameset cols="50%,50%">
                <frame src="links.html">
                <frame src="c.html" name="abc">
        </frameset>     
</html>

Links.html
<html>
        <head>     
        </head>
        <body>
                <a href="a.html" target="abc"> Page A </a> <br>
                <a href="b.html" target="abc"> Page B </a>
        </body>       
</html>

HTML Marquee Tag And Its Attributes With Example

HTML <marquee> Tag:  The HTML <marquee> tag is used for scrolling piece of text or image displayed either horizontally across left/right or vertically down/up of your web site page depending on the settings.
Example:

<marquee>This is Sample example of marquee</marquee>
This will produce following result:

This is Sample example of marquee
Attributes:
Attribute
Value
Description
behavior scroll
slid
alternate
Defines the type of scrolling.
bgcolor rgb(x,x,x)
#xxxxxx
colorname
Deprecated - Specifies the background color.
direction up
down
left
right
Defines the direction of scrolling the content.
height pixels or % Defines the height of marquee.
hspace pixels Specifies horizontal space around the marquee.
loop number Specifies how many times to loop. The default value is INFINITE, which means that the marquee loops endlessly.
scrolldelay seconds Defines how long to delay between each jump.
scrollamount number Defines how how far to jump.
width pixels or % Defines the width of marquee.
vspace pixels Specifies vertical space around the marquee.
Standard Attributes:
Attribute
Description
class Document wide identifier
dir Specifies the direction of the text
id Document wide identifier
title Specifies a title to associate with the element.
style Helps to include inline casecadubf style sheet.
lang Sets the language code.
xml:lang Sets the language code.
Event Attributes:
Attribute
Description
onclick Script runs when a mouse click
ondblclick Script runs when a mouse double-click
onmousedown Script runs when mouse button is pressed
onmouseup Script runs when mouse button is released
onmouseover Script runs when mouse pointer moves over an element
onmousemove Script runs when mouse pointer moves
onmouseout Script runs when mouse pointer moves out of an element
onkeypress Script runs when key is pressed and released
onkeydown Script runs when key is pressed
onkeyup Script runs when key is released
Ex:-
 <marquee behavior="alternate" bgcolor="#FFCCFF" width="400px" height="200px" direction="up" loop="4" scrollamount="6" scrolldelay="600" >
It Job Careers, The Best Site For IT Computer Course Learners And Job Seekers!
</marquee>

o/p>---
It Job Careers, The Best Site For IT Computer Course Learners And Job Seekers!

Saturday, November 24, 2012

HTML Contents

9. HTML Marquee Tag And Its Attributes With Example
10. HTML Frameset And Frame Tags
11. HTML Inline Frame: ( Iframe Tag )
12. HTML TABLE's With Attributes and Examples
13. HTML Form Object Tags With Example

HTML Image Tag

Images :
<img src=”path of file”>
If both html file and image in the same folder then no need to give path


<img src=”path of file” alt=”This is an Image”>
If the Browser can not display Image with any reasons then Alternative text will display.


Example
<html>
<body>
<img src="sunset.jpg" alt="Sunset Image"  border="10" width=250 height=300 align=right>
</body>
</html>
Setting the height adjusts width and vice-versa. Pick the Image from Different Folder In your Folder


Example
<html>
<body>
<img src="Images/roses.jpg" alt="Rose Flower" border="10">
</body>
</html>
Absolute Path  :  Path According to Drivers
Relative Path   :   Path According to Reference File


Example
Pick the Image from Different Folder which is out of your Folder
<html>
<body>
<img src="../roses.jpg" alt=" Rose Flower "  border="10">
</body>
</html>

See The Following Images are by using <img> Tag:





HTML Page Links <a> Tag
Using anchor <a> tags we can establish the links form one page to another Page.


Syntax : <a href = " Path of HTML file">    text    </a>


Example
red.html
<body bgcolor=red text=yellow>
<Hr/>
This is  Red file
<hr/>
<body>

green.html
<body bgcolor=green text=blue>
<hr>
This is green file
<hr> <body>

Color.html (main file)
<body bgcolor=yellow>
<hr>
<a href="red.html"> Red Page  </a>   <br>
<a href="green.html"> Green Page  </a>
</body>

Target is an attribute of anchor Tag.
 Target = "_blank” Opens the target Page in new page. 
Target = "_self” Opens the target Page in same page. (It is Default ) .


Example
<html>
<head>
</head>
<body>
<a href="a.html" target="_blank"> Page A </a>   <br>
<a href="b.html" target="_self"> Page B </a>
</body>
</html>


Note : Images can also be taken as Links
Example
<html>
        <head>
        </head>
        <body>
        <a href="b.html">  <img src="sunset.jpg"   height=70 > </a>
        </dody>
</html>

HTML Self Links In The Same Page

<body>
<a name="top"></a>
<h1 align="center">IT Job Careers</h1>
<hr/>
<a href="#t1">HTML</a>
<br>
<a href="#t2">CSS</a>
<br>
<a href="#t3">JS</a>
<br>
<a href="#t4">PHP</a>
<br>
<hr/>
<!-- <a name="t1"></a> -->
<h2 id="t1">About HTML</h2>
<pre>
---------------
---------
---------------------
----------------
--------
-------------------
-------------
------------------
--------------
-------------------
--------
</pre>
<hr/><a href="#top">-- Top --</a>
<h2 id="t2">About CSS</h2>
<pre>
---------------
---------
---------------------
----------------
--------
-------------------
-------------
------------------
--------------
-------------------
--------
</pre>
<hr/><a href="#top">-- Top --</a>
<h2 id="t3">About JS</h2>
<pre>
---------------
---------
---------------------
----------------
--------
-------------------
-------------
------------------
--------------
-------------------
--------
</pre>
<hr/><a href="#top">-- Top --</a>
<h2 id="t4">About PHP</h2>
<pre>
---------------
---------
---------------------
----------------
--------
-------------------
-------------
------------------
--------------
-------------------
--------
</pre>
<hr/>
<a href="#top">-- Top --</a>
</body>


O/P:-----------------------------------

IT Job Careers


HTML
CSS
JS
PHP

About HTML

---------------
---------
---------------------
----------------
--------
-------------------
-------------
------------------
--------------
-------------------
--------

-- Top --

About CSS

---------------
---------
---------------------
----------------
--------
-------------------
-------------
------------------
--------------
-------------------
--------

-- Top --

About JS

---------------
---------
---------------------
----------------
--------
-------------------
-------------
------------------
--------------
-------------------
--------

-- Top --

About PHP

---------------
---------
---------------------
----------------
--------
-------------------
-------------
------------------
--------------
-------------------
--------

-- Top --

HTML Types Of Lists

HTML offers several mechanisms for specifying lists of information. All lists must contain one or more list elements. Lists may contain:
HTML  List are of 3 types
1) Ordered List
2) Unordered List
3) Definition List
1) Ordered List:- An ordered list, created using the <ol> element, should contain information where order should be emphasized, as in a recipe:
list with numbers( 1,2,3 (or) a,b,c,.. (or) A,B,C,.. (or) i,ii.iii,… (or) I,II,III,…)
<ol> tag (Order list)
<li> tag (List Item)
Example for Ordered List:
<body>
       <ol >
              <li> Java </li>
              <li> ASP </li>
              <li> PHP </li>
       </ol>
</body>
 o/p:----------------------------------------

  1. Java
  2. ASP
  3. PHP

Example for Ordered List with Start Number and/or Type attributes:
<body>
       <ol start=10>
                <li> Java </li>
                 <li> ASP </li>
                    <li> PHP </li>
       </ol>
</body>
Example for Ordered List with type of Numbering
<html>
       <head>
       </head>
<body>
       <ol Type="A">                     
              <li> Java </li>
              <li> ASP </li>
              <li> PHP </li>
       </ol>
</body>
</html>
Note : You can use a,i,I for the Type.

Unordered List: List with bullets only.
Unordered List with 3 types :
  • Circle
  • Square
  • Disk
Example for Un-Ordered List with type of Bullet
<body>
       <ul Type="circle">
              <li> PHP </li>
              <li> JAVA </li>
       </ul>
</body>
o/p:----------------------------

  • PHP
  • JAVA

Note : In Unordered list Default bullet is Disk. We can write OL in UL. We can write OL in OL. We can write UL in OL. We can write UL in UL.
Example for Un-Ordered List within Ordered List
<html>
<head>
</head>
<body>
<ol>
<li> Databases </li>
<ul>
<li>  Oracle </li>
<li>  SQL Server </li>
</ul>
<li> Programming </li>
<li> Testing </li>
</ol>
</body>
</html>


Definition List:
A definition list is not a list of single items. It is a list of items.
A definition list starts with a <dl> tag (definition list).
Each term starts with a <dt> tag (definition term).
Each description starts with a <dd> tag (definition description).
Example using Definition List
<body bgcolor=violet>
<strong>
Drinks
</strong>
<hr color=brown>
    <dl>  
                <dt> Pepsi</dt>
                         <dd>Cool Drink </dd>
                         <dd>Contains Alcohol </dd>
                <dt> Boost </dt>
                       <dd>Health Drink</dd>
                       <dd>Contains Chocolate</dd>              
    </dl>
</body>
o/p:-------------------------
Drinks

 
Pepsi
Cool Drink
Contains Alcohol
Boost
Health Drink
Contains Chocolate
 

Different HTML Text Output Tags

<pre>: Preformatted text (how to control line breaks and spaces)
<html>
<body>
<pre>
This is
preformatted text.
It preserves      both spaces
and line breaks.
</pre>
<p>The pre tag is good for displaying computer code:</p>
<pre>
for i = 1 to 10
     print i
next i
</pre>
</body>
</html>
o/p>--------------------------------

This is
preformatted text.
It preserves      both spaces
and line breaks.
The pre tag is good for displaying computer code:
for i = 1 to 10
     print i
next i
Different computer-output tags:-
Line Breaks: <br/> tag.
Horizontal rule: <hr/>
Ex: <hr color="brown" width="50%" size="5" />
Attributes: align, width, size, color
o/p:--

Address Tag:
<html>
<body>
<address>
Millennium Software Solutions<br>
Dwarakanagar<br>
Vizag<br>
INDIA
</address>
</body>
</html>
o/p>--------------------------------------------

Millennium Software Solutions
Dwarakanagar
Vizag
INDIA

Text Formatting Tags

Tag Description
<b> Defines bold text
<big> Defines big text
<em> Defines emphasized text 
<i> Defines italic text
<small> Defines small text
<strong> Defines strong text
<sub> Defines subscripted text
<sup> Defines superscripted text
<ins> Defines inserted text
<del> Defines deleted text
<s> Deprecated. Use <del> instead
<strike> Deprecated. Use <del> instead
<u> Deprecated. Use styles instead

Citations, Quotations, and Definition Text Format Tags

Tag Description
<abbr> Defines an abbreviation
<acronym> Defines an acronym
<address> Defines an address element
<bdo> Defines the text direction
<blockquote> Defines a long quotation
<q> Defines a short quotation
The <q> tag is supported in all major browsers, except Internet Explorer.
<cite> Defines a citation
<dfn> Defines a definition term
Ex:
<html>
<body>
<abbr title="United Nations">UN</abbr>
<br />
<acronym title="World Wide Web">WWW</acronym>
<p>The title attribute is used to show the spelled-out version when holding the mouse pointer over the acronym or abbreviation.</p>
</body>
</html>
o/p>-----------------------------------------------------------------------------
UN
WWW
The title attribute is used to show the spelled-out version when holding the mouse pointer over the acronym or abbreviation
<bdo>  stand for bidirectional override.
The <bdo> tag allows you to specify the text direction and override the bidirectional algorithm.
<html>
<body>
<p>
If your browser supports bi-directional override (bdo), the next line will be written from the right to the left (rtl):
</p>
<bdo dir="rtl">
Here is some Hebrew text
</bdo>
</body>
</html>
o/p>-----------------------------------------------------------

If your browser supports bi-directional override (bdo), the next line will be written from the right to the left (rtl):
Here is some Hebrew text
<html>
<body>
<em>Emphasized text</em><br />
<strong>Strong text</strong><br />
<dfn>Definition term</dfn><br />
<code>Computer code text</code><br />
<samp>Sample computer code text</samp><br />
<kbd>Keyboard text</kbd><br />
<var>Variable</var><br />
<cite>Citation</cite>
</body>
</html>
O/P>-----------------------------------------------
Emphasized text
Strong text
Definition term
Computer code text
Sample computer code text
Keyboard text
Variable
Citation

HTML Headings & Text Formatting Tags

Heading Styles
<html>
<body>
<h1 align=”center”>This is heading 1</h1>
<h2>This is heading 2</h2>
<h3>This is heading 3</h3>
<h4>This is heading 4</h4>
<h5>This is heading 5</h5>
<h6>This is heading 6</h6>
</body>
</html>
0/p>---------------------------------------------------
This is heading 1
This is heading 2
This is heading 3
This is heading 4
This is heading 5
This is heading 6
* <h1 style="text-align:center">This is heading 1</h1>
*  <body style="background-color:yellow">   background

HTML Formatting Text Examples
<p> tag used for Paragraph.
<html>
<body>
<p><b>This text is bold </b></p>
<p><strong>This text is strong </strong></p>
<p><big>This text is big</big></p>
<p><em>This text is emphasized</em></p>
<p><i>This text is italic</i></p>
<p><small>This text is small</small></p>
<p>This is<sub> subscript</sub> and <sup>superscript</sup></p>
</body>
</html>
o/p>--------------------------------------------------

This text is bold
This text is strong
This text is big
This text is emphasized
This text is italic
This text is small
This is subscript and superscript

Basic Structure of HTML

Basic HTML Structure Tags: <html>, <head> <title>, <meta> and <body>

<html>
This tag is used to indicate that this is a HTML document. Most HTML documents should start and end with this tag.
<head>
This tag is used to indicate the header section of the HTML document, which typically includes the <title> and <meta> tags, and is not displayed in the main window of the browser.
<title>
 The title is what is displayed on the upper left corner of your browser when you view a web page..
<title> tag indicate what the page content is.
<meta>
The <meta> tag information is not directly displayed when the page is rendered on the browser. Rather, this is used for the author of the HTML page to record information related to this page. Two common attributes are name and content.
<body>
The <body> tag includes the HTML body of the document.
The <body> tag may contain several attributes are listed below:

Attribute
Description
alink The color of the links.
Specifies the color of an active link in a document
background Specifies a background image for a document
bgcolor Specifies the background color of a document
link
Specifies the default color of unvisited links in a document
text Specifies the color of the text in a document
vlink Specifies the color of the visited links in a document
Ex: <body bgcolor="#ffffff" text="yellow">
<body background="background.jpg">
So, in general, all HTML Documents have the following format:
<html>
<head>
<title>
Here is the title of the HTML document.
</title>
<meta name="Ganesh " content="Sample HTML " />
</meta>

</head>
<body bgcolor="ff00ff”>
Here is the body of the HTML document.
</body>

</html>
o/p>--------------------------

Here is the body of the HTML document.

HTML(Hyper Text Markup Language) Introduction

HTML is a language for describing web pages.
  • A markup language is a set of markup tags

  • HTML uses markup tags to describe web pages

HTML Tags

  • HTML tags are keywords surrounded by angle brackets like <html>
  • HTML tags normally come in pairs like <b> (start tag) and </b> (end tag)
  • HTML tags are not case sensitive: <P> means the same as <p>.

Editing HTML Files:

Notepad

Dreamweaver

FrontPage

HTML Builder

HTML File Extension:

To save an HTML file, we can use either the .htm or the .html extension. With new software it is perfectly safe to use .html.

Nested HTML Elements

Most HTML elements can be nested (can contain other HTML elements).
Ex:   <b><i>welcome</i></b>

Empty HTML Elements

HTML elements without content are called empty elements. Empty elements can be closed in the start tag.
<br> is an empty element without a closing tag (it defines a line break).

In XHTML, XML, and future versions of HTML, all elements must be closed. Ex: <br/>

HTML Attributes

  • Attributes provide additional information about the element
  • Attributes are always specified in the start tag
  • Attributes come in name/value pairs like: name="value"

HTML Comments: Comments are ignored by the browser and are not displayed.

Ex: <! This is a comment >

Friday, October 12, 2012

Few Tips To Consider On Your Resume



  • Be honest. Never lie on your resume, it will come back to haunt you later.

  • Use active verbs. When describing what you did at your last job, make the sentence as tight and active as possible. For instance, instead of saying "Served as patient contact for getting bills and contacting insurance," say "Liaised with patients and insurance companies, and managed financial transactions."

  • Proofread. Review your resume several times for grammatical or spelling errors. Have one or two other people look at it as well.

  • Keep the formatting clean. How your resume looks is almost as important as how it reads. Use a simple, classic font (such as Times New Roman, Arial or Helvetica), black ink on white paper, and sufficiently wide margins (about 1" on each side). Use bold or italic lettering sparingly if at all, and ensure your name and contact information are prominently displayed. Jobbook.com has a built-in resume creator that is quite good.
  • Job Work Related Skills You'd Like to Learn

    Take note of these are the skills which demonstrate how to get the job and be successful in your every job seeking endeavor. 

    • The ability to find relevant information: Job-seekers should possess the ability to systematically find relevant information through research not because they want a research job, but in order to do effective searches for the data needed by a particular activity.

    • Logical thinking and information handling: Most businesses regard the ability to handle and organize information to produce effective solutions as one of the top skills they want. The ability to make sensible solutions regarding a spending proposal or an internal activity is valued.

    • Technological ability: Most job openings will require people who are IT or computer literate or know how to operate different machines and office equipment, whether it's a PC or multi-function copier and scanner. This doesn't mean that employers need people who are technology graduates--knowing the basic principles of using current technology is sufficient.

    • Communicating effectively: Employers tend to value and hire people who are able to express their thoughts efficiently through verbal and written communication. People who land a good job easily are usually those who are adept in speaking and writing.

    • Efficiency and organizational skills Organization is extremely important to maintain a harmonious working relationship in the company and disorganization costs money. Hence, most employers want people who know how to arrange their work through methods that maintain orderliness in the workplace.

    • Strong interpersonal skills: Because the working environment consists of various kinds of personalities and people with different backgrounds, it is essential to possess the skill of communicating and working with people from different walks of life.

    • Potential for future professional growth: Employers prefer to hire people who are able to create a plan that will generate maximum personal and career growth. This means that you are willing to improve yourself professionally by learning new skills to keep up with developments in the workplace.

    How to Get a Job, 11-Steps to Start

    Are you're looking for very first job, switching careers, or re-entering the job market after an extended absence, finding a job you requires two main tasks: Understanding yourself & understanding the job market. If you've already chosen a bright career and are currently searching for the best jobs, here are several ways to actually get a right job. 

    1. Revise your resume: Before you start the job hunting, make sure that your resume is as perfect, complete and up-to-date as possible.


    2. Network: The best companies to work for tend to rely heavily (up to 40%) on some employee referrals. Make a list of all of your friends, relatives, and acquaintances. Contact them one by one and ask them if they know of any openings for which they could recommend you. Don't be too humble or apologetic. Tell them what you're looking for, but let them know you're flexible and open to suggestions. This is not the time to be picky about jobs; a connection can get your foot in the door, and you can negotiate pay or switch positions once you've gained experience and established your reputation. 


    3. Volunteer: If you aren't already, start volunteering for an organization that focuses on something you're passionate about. You may start out doing boring or easy work, but as you stick around and demonstrate your commitment, you'll be given more responsibilities. Not only will you be helping others, but you'll also be gaining references. Emphasize your volunteer experience on your resume, as companies that treat their employees well tend to favor candidates who help the community somehow.

    4. Develop your personal elevator pitch: Many structured interviews, particularly those at large companies, start with a question like "Tell me about yourself." The interviewer doesn't really want you to go back to grade school and talk about your childhood. This is a specific question with a right answer: in two minutes or so, the interviewer wants to get you to relax and loosen out your vocal cords, understand your background, your accomplishments, why you want to work at XYZ company and what your future goals are.

    5. Prepare for a behavioral interview: You might be asked to describe problems you've encountered in the past and how you handled them, or you'll be given a hypothetical situation and asked what you would do. They'll basically want to know how you'll perform when faced with obstacles in the position you're interviewing for. Be able to give honest, detailed examples from your past, even if the question is hypothetical (e.g. "I would contact the customer directly, based on my past experience in a different situation in which the customer was very pleased to receive a phone call from the supervisor"). You might find yourself listing facts--if so, remember that in this kind of interview, you need to tell a story.

    6. Research the company: Don't just do an Internet search, memorize their mission, and be done with it. If it's a retail company, visit a few of their stores, observe the customers, and even strike up a few conversations. Talk to existing employees--ask them what it's like working there, how long the position has been open, and what you can do to increase your chances of getting it. Become familiar with the history of the company. Who started it? Where? Who runs it now? Be creative, and out-do the other candidates.


    7. Settle down: If you've moved around a lot, be prepared to offer a good reason for it. Otherwise, you'll need to make a good case for why you want to stick around in the area where the job is located. A company doesn't want to hire someone with wanderlust who still wants to relocate. Be prepared to outline why you are where you are today, how long you intend to stay there, and why. Give specific reasons like, "This country has the best school systems in the entire continent, and I have a daughter who might find the cure for cancer" or "I was drawn to this area because it's at the cutting edge of innovation for this business and I want to be a part of that".


    8. Make a list of work-related skills you'd like to learn: Your employer will be interested in hearing about how you intend to become a better employee. Think about which skills will make you more competent in the position you're applying for. Public speaking, project management, team leading, and computer programs are usually beneficial. Find some books and upcoming conferences that would significantly improve your abilities. In an interview, tell the employer what you're reading and learning, and that you'd like to continue doing so. This is a list of the 7 most important job skills, wanted by employers, that a job-seeker must have to be sure of landing a good job and just as importantly, keeping it.

    9. Cold call: Locate a specific person who can help you (usually the human resources or hiring manager at a company or organization you're interested in). Call that person and ask if they are hiring, but do not become discouraged if they are not. Ask what kind of qualifications they look for or if they have apprentice or government-sponsored work programs. Ask if you can send your resume indicating what field you want to go into. 

    10. Change your attitude: There's a difference between making phone calls and going to interviews thinking "I'm looking for a job" versus "I'm here to do the work you need to have done". When you're looking to get a job, you're expecting someone to give something to you, so you focus on impressing them. Yes, it's important to make a good impression, but it's even more important to demonstrate your desire and ability to help. Everything that you write and say should be preceded silently by the statement "This is how I can help your business succeed".

    11. Fit the job to the skills rather than the other way around: Many people search for jobs, then try to see how they can "tweak" the way they present their own skills and experiences to fit the job description. Instead, try something different. Make a list of all of your skills, determine which kinds of businesses and industries need them most (ask around for advice if you need to) and find businesses that will benefit from having you and your skills around.

    Related Posts Plugin for WordPress, Blogger...