আমার পঠিত ব্লগ সমুহ

Mobile Related Posts লেবেলটি সহ পোস্টগুলি দেখানো হচ্ছে৷ সকল পোস্ট দেখান
Mobile Related Posts লেবেলটি সহ পোস্টগুলি দেখানো হচ্ছে৷ সকল পোস্ট দেখান

শুক্রবার, ৮ জুন, ২০১২

Sample Tables


  • Example 1A - SOURCE CODE (first table row contains only one cell)

    <table border="3" bordercolor="#c86260" bgcolor="#ffffcc" width="50%" cellspacing="5" cellpadding="3">

    <tr><td>MY DAILY MENU</td></tr>

    <tr><td valign="top"><b>Breakfast</b></td><td>Orange juice<br>Toast<br>Black coffee</td></tr>

    <tr><td valign="top"><b>Lunch</b></td><td>Tuna sandwich<br>Apple</td></tr>

    <tr><td valign="top"><b>Dinner</b></td><td>Hamburger steak<br>Mashed potatoes<br>Green beans<br>Jello</td></tr>

    </table>

    Example 1A - RESULT (first table row contains only one cell)
    MY DAILY MENU
    BreakfastOrange juice
    Toast
    Black coffee
    LunchTuna sandwich
    Apple
    DinnerHamburger steak
    Mashed potatoes
    Green beans
    Jello
    <~Missing table cell


    This situation can be remedied using the colspan attribute whose value defines how many columns a table cell will span. Hence, a <td>tag using a colspan="2" attribute-value pair will specify that that particular cell will stretch over the equivalent of two columns worth of space:

    Example 1B - SOURCE CODE (cell spans two columns)

    <table border="3" bordercolor="#c86260" bgcolor="#ffffcc" width="50%" cellspacing="5" cellpadding="3">

    <tr><td align="center" colspan="2">MY DAILY MENU</td></tr>

    <tr><td valign="top"><b>Breakfast</b></td><td>Orange juice<br>Toast<br>Black coffee</td></tr>

    <tr><td valign="top"><b>Lunch</b></td><td>Tuna sandwich<br>Apple</td></tr>

    <tr><td valign="top"><b>Dinner</b></td><td>Hamburger steak<br>Mashed potatoes<br>Green beans<br>Jello</td></tr>

    </table>

    Example 1B - RESULT (cell spans two columns)
    MY DAILY MENU
    BreakfastOrange juice
    Toast
    Black coffee
    LunchTuna sandwich
    Apple
    DinnerHamburger steak
    Mashed potatoes
    Green beans
    Jello

    Note that, as well as using colspan="2" in the 'MY DAILY MENU' table cell to make it span two columns, we also usedalign="center" to center the content.
  • rowspan="number of rows" ~ The rowspan attribute works just like the colspan attribute except that you may find the situation a little more difficult to visualize when working with the source code. But once again the principle is the same. By using the rowspan attribute, you can force a table cell to span the number of rows specified by the respective value.

    In the following example, the 'MONDAY' table cell spreads over three table rows:

    Example 2 - SOURCE CODE (cell spans three rows)

    <table border="3" bordercolor="#c86260" bgcolor="#ffffcc" width="50%" cellspacing="5" cellpadding="3">

    <tr><td align="center" colspan="3">MY DAILY MENU</td></tr>

    <!-- FIRST CELL IN THIS ROW SPANS THE NEXT 3 ROWS--> <tr><tdrowspan="3">M<br>o<br>n<br>d<br>a<br>y</td><td valign="top"><b>Breakfast</b></td><td>Orange juice<br>Toast<br>Black coffee</td></tr>

    <tr><td valign="top"><b>Lunch</b></td><td>Tuna sandwich<br>Apple</td></tr>

    <tr><td valign="top"><b>Dinner</b></td><td>Hamburger steak<br>Mashed potatoes<br>Green beans<br>Jello</td></tr>

    </table>

    Example 2 - RESULT (cell spans three rows)
    MY DAILY MENU
    M
    o
    n
    d
    a
    y
    BreakfastOrange juice
    Toast
    Black coffee
    LunchTuna sandwich
    Apple
    DinnerHamburger steak
    Mashed potatoes
    Green beans
    Jello

  • Background and Border Color

     
     
    <table 
    border="number in pixels"
    bordercolor="color"
    bordercolorlight="color"
    bordercolordark="color"
    bgcolor="color">
    ...</table>

     
    Width of table border
    Table border color
    Top/left side border color
    Bottom/right side border color
    Background color
     
    You are not obliged to settle for the default color used by web browsers to draw the borders of your HTML tables. Using various attributes in the<table> tag, you can specify your table's border color and even create a simple 3D effect. You can also define your table's background color. These attributes are detailed below:


    • border="width in pixels" ~ To recap from the previous page, you can use the border attribute to specify the width of your table's border in pixels. The number of pixels desired for the width is used as the value.
    • bordercolor="color definition*" ~ The bordercolor attribute can be used to define the color of your table's border. You may use anylegal color definition as the value. The final effect on your web page will vary from browser to browser. Internet Explorer will use your selected color to display one solid colored frame around your table. Gecko-based browsers, such as Firefox, will create a 3D lighting effect using a light version of your color on the top and left sides and a dark version of your color on the bottom and right sides.
    • bordercolorlight="color definition*" ~ Thebordercolorlight attribute can be used to define the border color on the top and left sides of your table. Although any legal color definition can be used as the value, the intent is to allow web authors to specify light colors in order to create a 3D lighting effect on your table's border. (This attribute is not supported in Netscape or Mozilla since thebordercolor attribute already accomodates the resulting effect.)
    • bordercolordark="color definition*" ~ Thebordercolordark attribute can be used to define the border color on the bottom and right sides of your table. Although any legal color definition can be used as the value, the intent is to allow web authors to specify dark colors in order to create a 3D lighting effect on your table's border. (This attribute is not supported in Netscape or Mozilla since thebordercolor attribute already accomodates the resulting effect.)
    • bgcolor="color definition*" ~ Using the bgcolor attribute, you can specify the background color of your table which includes the background in between table cells and background inside table cells. You may use any legal color definition as the value.

      A background color may also be applied to an individual table data cell by using the bgcolor attribute in the <td> tag. The selected background color will thus only apply to that particular cell.

      *(Please see Font Color for a description of all legal color definitions.)

    Example 1 - SOURCE CODE

    <table border="5" bordercolor="maroon" bgcolor="silver">
       <tr><td>Cell content...</td><td>Cell content...</td></tr>
       <tr><td>Cell content...</td><td>Cell content...</td></tr>
       <tr><td>Cell content...</td><td>Cell content...</td></tr>
    </table>


    Example 1 - RESULT
    Cell content...Cell content...
    Cell content...Cell content...
    Cell content...Cell content...



    Example 2 - SOURCE CODE

    <table border="5" bordercolor="#8080cc" bordercolorlight="#8080c0" bordercolordark="#400080" bgcolor="#ffffcc">
       <tr><td>Cell content...</td><td>Cell content...</td></tr>
       <tr><td>Cell content...</td><td>Cell content...</td></tr>
       <tr><td>Cell content...</td><td>Cell content...</td></tr>
    </table>


    Example 2 - RESULT
    Cell content...Cell content...
    Cell content...Cell content...
    Cell content...Cell content...
The cellspacing and cellpadding attributes are used in the <table>tag and apply to all cells in the respective table. The align and valignattributes are used in individual <td> tags and apply respectively to that particular table data cell. 

All these attributes are described in more detail below:
  • cellpadding="length in pixels" ~ The cellpadding attribute, used in the <table> tag, specifies how much blank space to displayin between the content of each table cell and its respective border. The value is defined as a length in pixels. Hence, a cellpadding="10"attribute-value pair will display 10 pixels of blank space on all four sides of the content of each cell in that table. (See Example 1)
  • cellspacing="length in pixels" ~ The cellspacing attribute, also used in the <table> tag, defines how much blank space to display in between adjacent table cells and in between table cells and the table border. The value is defined as a length in pixels. Hence, acellspacing="10" attribute-value pair will horizontally and vertically separate all adjacent cells in the respective table by a length of 10 pixels. It will also offset all cells from the table's frame on all four sides by a length of 10 pixels.

    Example 1 clearly illustrates the difference between cellpadding and cellspacing:


    Example 1 - (cellpadding="10" cellspacing="10")
    tablecells1 (3K)

    Example 1 - Legend

     
    Cell content

     
    Cellpadding

    .....
    Cell border

     
    Cellspacing

     
     
    Table border

  • align="left, center or right" ~ When the align attribute is used in a <td> tag as opposed to a <table> tag, it produces a slightly different effect. When used in a <td> tag, the align attribute will set the horizontal alignment of that respective cell's content. The value can be leftrightcenter or justify. (Please see Aligning Text for a full description of the resulting effects.)
  • valign="top, middle, or bottom" ~ The valign attribute can be used in a <td> tag to set the vertical alignment of that respective cell's content. The values that can be used are topmiddle, or bottom and will produce the following effects respectively:

    • top ~ The content is aligned flush with the top of the table cell (taking cellpadding into consideration).
    • middle ~ The content is aligned in the vertical center of the table cell (default value).
    • bottom ~ The content is aligned flush with the bottom of the table cell (taking cellpadding into consideration).

    Example 2A - SOURCE CODE (Default vertical alignment)

    <table border="3" bordercolor="#c86260" bgcolor="#ffffcc" width="50%" cellspacing="2" cellpadding="3">
    <tr><td><b>Breakfast</b></td><td>Orange juice<br>Toast<br>Black coffee</td></tr>
    <tr><td><b>Lunch</b></td><td>Tuna sandwich<br>Apple</td></tr>
    <tr><td><b>Dinner</b></td><td>Hamburger steak<br>Mashed potatoes<br>Green beans<br>Jello</td></tr>
    </table> 

    Example 2A - RESULT (Default vertical alignment)
    BreakfastOrange juice
    Toast
    Black coffee
    LunchTuna sandwich
    Apple
    DinnerHamburger steak
    Mashed potatoes
    Green beans
    Jello


    Example 2B - SOURCE CODE (valign="top" set for left-hand cells)

    <table border="3" bordercolor="#c86260" bgcolor="#ffffcc" width="50%" cellspacing="2" cellpadding="3">
    <tr><td valign="top"><b>Breakfast</b></td><td>Orange juice<br>Toast<br>Black coffee</td></tr>
    <tr><td valign="top"><b>Lunch</b></td><td>Tuna sandwich<br>Apple</td></tr>
    <tr><td valign="top"><b>Dinner</b></td><td>Hamburger steak<br>Mashed potatoes<br>Green beans<br>Jello</td></tr>
    </table> 

    Example 2B - RESULT (valign="top" set for left-hand cells)
    BreakfastOrange juice
    Toast
    Black coffee
    LunchTuna sandwich
    Apple
    DinnerHamburger steak
    Mashed potatoes
    Green beans
    Jello




<td 
width="pixels or percentage"
height="pixels or percentage">
...</td>

 
Web browsers will automatically set the dimensions of the rows and columns in your web page table according to how much content your table cells contain. Since cells are displayed in a grid-like pattern then the cell containing the most content will typically set the width and height of all cells adjacent to it and hence establish the width and height of related rows and columns in your table. 

You can, however, apply the width and height attributes to your <td> tags to explicitly set the dimensions of your table cells and thus exercise control over the width and height of rows and columns.

These attributes are described in more detail below:
  • width="pixels or percentage" ~ Using the width attribute in your<td> tags, you can explicitly set the width of your table data cells. This will have the effect of setting not only the width of that particular cell but will also set the width of the entire column in which that cell resides. You may define either a fixed width in pixels or a relative width (recommended) which is equal to a percentage of the table width.

    NOTE: In the case where the width attribute is set in more than one cell in the same column, the largest width is the one that is applied. Likewise, if the content in any table cell in that column (such as a graphic) outsizes a specified width, the width of the content will establish the width of the cell and the column it resides in.

    Example 1 below renders a table that is 500 pixels wide and has two columns. The width of the first table data cell is set to 25% which then sets the width of all the cells in Column 1 at 25% or 125 pixels (25% of 500 = 125). The width of all the cells in Column 2 default to the remainder of table's width (75%):

    Example 1 - SOURCE CODE

    <table width="500" border="5">
       <tr><td width="25%">Column 1</td><td>Column 2</td></tr>
       <tr><td>Column 1</td><td>Column 2</td></tr>
       <tr><td>Column 1</td><td>Column 2</td></tr>
    </table>


    Example 1 - RESULT
    Column 1Column 2
    Column 1Column 2
    Column 1Column 2

  • height="pixels or percentage" ~ Using the height attribute in your <td> tags, you can explicitly set the height of your table data cells. This will have the effect of setting not only the height of that particular cell but will also set the height of the entire row in which that cell resides. You may define either a fixed height in pixels (recommended) or a relative height which is equal to a percentage of the table's height.

    NOTE: In the case where the height attribute is set in more than one cell in the same row, the largest height is the one that is applied. Likewise, if the content in any table cell in that row (such as a graphic) outsizes a specified height, the height of the content will establish the height of the cell and the row it resides in.

    Example 2 renders a table that is 500 pixels wide and has two rows. The height of the first table cell in Row 1 is set to 100 pixels which then sets the height of all cells in Row 1 to 100 pixels. The height of Row 2 is not affected by the height specification in Row 1.

    Example 2 - SOURCE CODE

    <table width="500" border="5">
    <tr><td height="100">Row 1</td><td>Row 1</td><td>Row 1</td></tr>
    <tr><td>Row 2</td><td>Row 2</td><td>Row 2</td></tr>
    </table>

    Example 2 - RESULT
    Row 1Row 1Row 1
    Row 2Row 2Row 2

বুধবার, ১৯ অক্টোবর, ২০১১


জেনে নিন নোকিয়া মোবাইলের বর্তমান বাজারের দরদাম সম্পর্কে (ছবি সহ বিস্তারিত আপডেট)

কেমন আছেন সবাই ? আশা করি সবাই ভালো আছেন। আজ আমি আপনাদের সাথে শেয়ার করবো নোকিয়া মোবাইলের বর্তমান বাজারের দরদাম। যারা নতুন করে নোকিয়া মোবাইল কিনতে চাচ্ছেন আশা করি তাদের কাজে লাগবে। আর একটি কথা বলে রাখা ভালো এই রেটটা মার্কেট রেটের সাথে পুরাপুরি নাও মিলতে পারে তবে এটার দ্বারা আপনি আপনার বাজেট বা অনুমানিক একটা ধারনা পাবেন ঠিক করতে পারবেন। martphones with messaging
Nokia Model No.Nokia Price (MRP) in BDTView Details
Nokia N8-00 [N Series, Symbian OS] 12 MP Camera, Xenon Flash, 16 GB Internal Memory etc.MRP 35,700 BDTNokia Mobile - N8-00 Mobile Specifications
 Nokia Model No.Nokia Price (MRP) in BDTView Details
Nokia N97 mini [N Series, Symbian OS] 5 MP Camera, 8 GB Internal Memory, Edge Class 32 etc.MRP 29,900 BDT Nokia N97 mini Mobile Specifications
 Nokia Model No.Nokia Price (MRP) in BDTView Details
Nokia C7-00 [slim touch screen Smartphone] 8 MP Dual Camera, GPS Map, Edge Class 32, 8 GB storage etc.MRP 28,900 BDTNokia C7 Mobile Specifications
 Nokia Model No.Nokia Price (MRP) in BDTView Details
Nokia C6-00 5 MP Dual Camera, Symbian OS, Edge Class 32, GPS Map etc.MRP 20,700 BDTNokia C6 Smartphone Mobile Specifications
 Nokia Model No.Nokia Price (MRP) in BDTView Details
Nokia C6-01 8 MP Camera, Symbian OS, GPS Map, Edge Class 32 etc.MRP 22,800 BDTNokia C6-01 Mobile Specifications
 Nokia Model No.Nokia Price (MRP) in BDTView Details
Nokia E71 [ Nokia E Series Symbian OS ] 3.2 MP Camera, WLAN, Bluetooth, EDGE Class 32, Quick Office etc.MRP 19,300 BDTNokia E71 Mobile Specifications
 Nokia Model No.Nokia Price (MRP) in BDTView Details
Nokia E5-00 [ Nokia E Series Symbian OS ] 5 MP Camera, EDGE Class 32, Bluetooth, Quick Office etc.MRP 15,850 BDTNokia E5 Mobile Specifications
 Nokia Model No.Nokia Price (MRP) in BDTView Details
Nokia E63 [ Nokia E Series Symbian OS ] 2 MP Camera, EDGE Class 32, Bluetooth etc.MRP 13,150 BDTNokia E63 Mobile Specifications
Multimedia with messaging
 Nokia Model No.Nokia Price (MRP) in BDTView Details
Nokia 5530 (2GB) [Nokia 5530 XpressMusic] XpressMusic series, Symbian smartphone. 3.15 MP camera, 2.9″ TFT resistive touchscreen, Wi-Fi, Bluetooth etc.MRP 14,500 BDTNokia 5530 XpressMusic Mobile Specifications
 Nokia Model No.Nokia Price (MRP) in BDTView Details
Nokia C5-00 Nokia C series, Symbian smartphone. 3.15 MP camera, 3G Network, 2.2″ TFT display, GPS, Bluetooth etc.MRP 11,800 BDTNokia C5-00 Mobile Specifications
 Nokia Model No.Nokia Price (MRP) in BDTView Details
Nokia C5-00.2 Nokia C series, Symbian smartphone. 5 MP camera, 3G Network, EDGE Class 32, 2.2″ TFT display, GPS, Bluetooth etc.MRP 13,100 BDTNokia C5-00.2 Mobile Specifications
 Nokia Model No.Nokia Price (MRP) in BDTView Details
Nokia C5-03 Nokia C series, Symbian smartphone. 5 MP camera, 3G Network, 3.2″ TFT resistive touchscreen, Wi-Fi, GPS, Bluetooth etc.MRP 15,150 BDTNokia C5-03 Mobile Specifications
 Nokia Model No.Nokia Price (MRP) in BDTView Details
Nokia 5130 Nokia XpressMusic series. 2 MP camera, 2.0″ 256K colors display, Bluetooth etc.MRP 6,630 BDTNokia Mobile Phone - Nokia 5130 Mobile Specifications
 Nokia Model No.Nokia Price (MRP) in BDTView Details
Nokia 5233 Nokia Symbian smartphone. 2 MP camera, EDGE Class 32, MP3, MP4, Radio, 3.2″ TFT resistive touchscreen, Bluetooth etc.MRP 11,100 BDTNokia 5233 Mobile Specifications
 Nokia Model No.Nokia Price (MRP) in BDTView Details
Nokia 5250 Touch screen music smartphone. 2 MP Camera, Touch Screen, Symbian OS, Video, MP3, MP4, EDGE Class 32, Bluetooth etc.MRP 9,700 BDTNokia 5250 Mobile Specifications
 Nokia Model No.Nokia Price (MRP) in BDTView Details
Nokia C3-00 Nokia C-series. 2 MP Camera, MP3, MP4, EDGE Class 32, Bluetooth, Radio, WLAN, Java OS etc.MRP 9,300 BDTNokia C3-00 Mobile Specifications
 Nokia Model No.Nokia Price (MRP) in BDTView Details
Nokia C3-01 Nokia C-series. 5 MP Camera, EDGE Class 32, Bluetooth, Touch & Type, WLAN, 3G Network, FM Radio, Auto Flash etc.MRP 14,750 BDTNokia Mobile Phone - Nokia C3-01 Mobile Specifications
 Nokia Model No.Nokia Price (MRP) in BDTView Details
Nokia x2 Nokia X-series. Xpress Music. 5 MP camera, mp3, mp4, Flash Light, EDGE Class 32, Bluetooth, 2.2″ TFT display etc.MRP 7,750 BDTNokia Mobile Phone - Nokia x2 Mobile Specifications
 Nokia Model No.Nokia Price (MRP) in BDTView Details
Nokia X2-01 ( Nokia X2 QWERTY ) Nokia X-series. Xpress Music. VGA camera, mp3, mp4, EDGE Class 32, Bluetooth, 2.4″ TFT display, QWERTY Keyboard etc.MRP 6,480 BDTNokia X2-01 qwerty Mobile Specifications
Easy Entertainment
Nokia Model No.Nokia Price (MRP) in BDTView Details
Nokia 2700c [ Nokia 2700 classic ] Nokia classic phone. 2 MP Camera, Video, MP3, MP4, EDGE Class 32, Bluetooth, 2.0″ TFT display, Radio etc.MRP 5,650 BDTNokia 2700 Mobile Specifications
 Nokia Model No.Nokia Price (MRP) in BDTView Details
Nokia 2730c [ Nokia 2730 classic ] 2 MP Camera, Video, MP3, MP4, EDGE Class 32, 1 GB Memory, Bluetooth, Radio, 3G Phone etc.MRP 6,700 BDTNokia Mobile Phone - Nokia 2730 classic Mobile Specifications
 Nokia Model No.Nokia Price (MRP) in BDTView Details
Nokia 2690Nokia multimedia mobile. VGA Camera, 1.8″ TFT display, FM Radio, Handsfree, Digital Sound, Bluetooth, GPRS, 8 GB Memory Supportable etc.MRP 4,495 BDTNokia Mobile Specifications
 Nokia Model No.Nokia Price (MRP) in BDTView Details
Nokia C1-01 Reliable and stylish phone with 1.8″ TFT display, email, IM, 600x480 pixels camera, MP3 player, FM radio, memory card slot, microUSB slot, Digital Sound, Bluetooth and 3.5mm stereo headset etc.MRP 3,995 BDTNokia C1-01 Mobile Specifications
 Nokia Model No.Nokia Price (MRP) in BDTView Details
Nokia 2220s [slide] Nokia slide phone. VGA Camera, 1.8″ TFT display, Video, FM Radio, Loud Speaker, GPRS, Sleek Design, FM Recording etc.MRP 4,270 BDTNokia Mobile Phone - Nokia 2220s Mobile Specifications
Fun with Style
 Nokia Model No.Nokia Price (MRP) in BDTView Details
Nokia 6700 Classic Nokia classic phone. 5 MP camera, 3G Network, 2.2″ TFT display, GPS, Bluetooth etc.MRP 17,300 BDTNokia 6700 Classic Mobile Specifications
 Nokia Model No.Nokia Price (MRP) in BDTView Details
Nokia 6700 slide Nokia slide Symbian smartphone. 5 MP camera, 3G Network, 2.2″ TFT display, Bluetooth etc.MRP 13,950 BDTNokia 6700 slide Mobile Specifications
 Nokia Model No.Nokia Price (MRP) in BDTView Details
Nokia 6303i Nokia classic phone. 3.15 MP camera, 2.2″ TFT display, Bluetooth etc.MRP 9,450 BDTNokia 6303i Mobile Specifications
 Nokia Model No.Nokia Price (MRP) in BDTView Details
Nokia 7230s [ Nokia 7230 Slide ] 3.2 MP camera, 2.4&Prime TFT display, Video, MP3, MP4, EDGE Class 32, Sliding, FM radio, Bluetooth etc.MRP 8,710 BDTNokia 7230 Mobile Specifications
The Best of FM
Nokia Model No.Nokia Price (MRP) in BDTView Details
Nokia 5030 Nokia XpressRadio phone. 1.8′ TFT display, Internal FM Radio, Digital Sound, Loud Speaker, Torch Light etc.MRP 2,700 BDTNokia 5030 Mobile Specifications
 Nokia Model No.Nokia Price (MRP) in BDTView Details
Nokia 1616 FM Radio, Digital Sound, Loud Speaker, Torch Light, 1.8″ Color Display etc.MRP 2,060 BDTNokia 1616 Mobile Specifications
 Nokia Model No.Nokia Price (MRP) in BDTView Details
Nokia 1280 FM Radio, Digital Sound, Loud Speaker, 1.36″ Monochrome display, Torch Light etc.MRP 1,650 BDT 1,550 BDTNokia 1280 Mobile Specifications
 Nokia Model No.Nokia Price (MRP) in BDTView Details
Nokia 1680 Classic Nokia classic phone. 1.85″ TFT display, VGA camera etc.MRP 2,950 BDTNokia 1680 Classic Mobile Specifications
Dual Sim
Nokia Model No.Nokia Price (MRP) in BDTView Details
Nokia C1-00 [Dual SIM, one standby] FM Radio, Loud Speaker, Torch Light etc.MRP 2,490 BDTNokia C1-00 Mobile Specifications
 Nokia Model No.Nokia Price (MRP) in BDTView Details
Nokia x1-01 [Dual SIM - Dual Standby] FM Radio, Torch Light, MP3 player etc.MRP 2,995 BDTNokia Mobile Phone - Nokia x1-01 Mobile Specifications
 Nokia Model No.Nokia Price (MRP) in BDTView Details
Nokia C2-03 [ Dual SIM - Dual Standby ] 2 MP Camera, Touch & Type, MP3, MP4 etc.MRP 7,900 BDTNokia Mobile Phone - Nokia C2-03 Mobile Specifications
 Nokia Model No.Nokia Price (MRP) in BDTView Details
Nokia C2-00 [ Dual SIM - Dual Standby ] FM Radio, GPRS, Camera, color display, MP3, MP4 etc.MRP 4,900 BDTNokia Mobile Phone - Nokia C2-00 Mobile Specifications
 Nokia Model No.Nokia Price (MRP) in BDTView Details
Nokia 101 [ Dual SIM - Dual Standby ] FM Radio, Load Speaker, Torch Light, Color Display, MP3 player etc.MRP 2,550 BDTNokia Mobile Phone - Nokia 101 Mobile Specifications
Other Models of Nokia
Nokia Model No.Nokia Price (MRP) in BDTView Details
Nokia 1800 FM Radio, Digital Sound, Loud Speaker, Torch Light, 1.8 inch Display etc.MRP 2,250 BDTNokia Mobile Phone - Nokia 1800 Mobile Specifications
 Nokia Model No.Nokia Price (MRP) in BDTView Details
Nokia 2323c [ Nokia 2323 classic ] FM Radio, Loud Speaker, GPRS, Sleek Design, Bluetooth etc.MRP 3,450 BDTNokia Mobile Phone - Nokia 2323 Mobile Specifications
 Nokia Model No.Nokia Price (MRP) in BDTView Details
Nokia 2330c [ Nokia 2330 classic ] Camera, Video, FM Radio, Loud Speaker, GPRS, Sleek Design, Bluetooth etc.MRP 3,950 BDTNokia Mobile Phone - Nokia 2330 Mobile Specifications
 Nokia Model No.Nokia Price (MRP) in BDTView Details
Nokia X3 3.2 MP camera, super slim Touch and Type sliding phone. mp3, mp4, EDGE class 32, bluetooth etc.MRP 9,200 BDTNokia Mobile Phone - Nokia X3 Mobile Specifications
 Nokia Model No.Nokia Price (MRP) in BDTView Details
Nokia X3-02 Touch and Type phone. 3G, 2.4″ TFT resistive touchscreen, 5 MP camera, Wi-Fi, BluetoothMRP 12,850 BDTNokia Mobile Phone - Nokia X3-02 Mobile Specifications
 Nokia Model No.Nokia Price (MRP) in BDTView Details
Nokia X5-01 Slider, square design Symbian smartphone. 3G, 2.36″ TFT display, 5 MP camera, Wi-Fi, Bluetooth etc.MRP 13,100 BDTNokia Mobile Phone - Nokia X5-01 Mobile Specifications
 Nokia Model No.Nokia Price (MRP) in BDTView Details
Nokia X7 Symbian smartphone. 8 MP camera, 3G, 4.0″ AMOLED capacitive touchscreen, Wi-Fi, GPS, Bluetooth etc.MRP 35,500 BDTNokia Mobile Phone - Nokia X7 Mobile Specifications
 Nokia Model No.Nokia Price (MRP) in BDTView Details
Nokia 3710F [fold] 3.2 MP Camera, EDGE Class 32, 2GB Memory, Radio, 3G Network, Auto Flash, Bluetooth, v2.0 microUSB etc.MRP 11,900 BDTNokia Mobile Phone - Nokia 3710F Mobile Specifications
 Nokia Model No.Nokia Price (MRP) in BDTView Details
Nokia C2-01 3.2 MP camera, Java OS, 3G Network, EDGE Class 32, 2.0″ TFT display, Bluetooth, MP3, MP4 etc.MRP 6,650 BDTNokia Mobile Phone - Nokia C2-01 Mobile Specifications
 Nokia Model No.Nokia Price (MRP) in BDTView Details
Nokia x6 Symbian smartphone. 5 MP camera, 3G, 3.2″ TFT capacitive touchscreen, Wi-Fi, GPS, Bluetooth etc.MRP 21,500 BDTNokia Mobile Phone - Nokia x6 Mobile Specifications
 Nokia Model No.Nokia Price (MRP) in BDTView Details
Nokia 5800 Nokia XpressMusic Symbian smartphone. 3.15 MP camera, 3G Network, 3.2″ TFT resistive touchscreen, Wi-Fi, GPS, Bluetooth etc.MRP 19,600 BDTNokia Mobile Phone - Nokia 5800 Mobile Specifications
 Nokia Model No.Nokia Price (MRP) in BDTView Details
Nokia 5730 Nokia XpressMusic Symbian smartphone. 3.15 MP camera, 3G Network, 2.4″ TFT display, Wi-Fi, GPS, Bluetooth etc.MRP 25,590 BDTNokia Mobile Phone - Nokia 5730 Mobile Specifications
 Nokia Model No.Nokia Price (MRP) in BDTView Details
Nokia N-900 Nokia Smartphone. 5 MP Camera, QWERTY, 3G Network, 3.5″ TFT resistive Touchscreen, Wi-Fi, GPS, Bluetooth etc.MRP 39,500 BDTNokia Mobile Phone - Nokia N-900 Mobile Specifications
 Nokia Model No.Nokia Price (MRP) in BDTView Details
Nokia E7 Symbian smartphone. 8 MP camera, 3G Network, 4.0″ AMOLED capacitive touchscreen, Wi-Fi, GPS, Bluetooth etc.MRP 41,700 BDTNokia Mobile Phone - Nokia E7 Mobile Specifications
 Nokia Model No.Nokia Price (MRP) in BDTView Details
Nokia E6 Symbian smartphone. 8 MP camera, 3G Network, 2.46″ TFT capacitive touchscreen, Wi-Fi, GPS, Bluetooth etc.MRP 30,500 BDTNokia Mobile Phone - Nokia E6 Mobile Specifications
 Nokia Model No.Nokia Price (MRP) in BDTView Details
Nokia E72 Symbian smartphone. 5 MP camera, 3G Network, 2.36″ TFT display, Wi-Fi, GPS, Bluetooth etc.MRP 23,900 BDTNokia Mobile Phone - Nokia E72 smartphone Mobile Specifications