Menu
Your Cart

A4TECH FBK30 Bluetooth & Wireless Keyboard with Bangla

A4TECH FBK30 Bluetooth & Wireless Keyboard with Bangla
A4TECH FBK30 Bluetooth & Wireless Keyboard with Bangla
A4TECH FBK30 Bluetooth & Wireless Keyboard with Bangla
-11 %
A4TECH FBK30 Bluetooth & Wireless Keyboard with Bangla
A4TECH FBK30 Bluetooth & Wireless Keyboard with Bangla
A4TECH FBK30 Bluetooth & Wireless Keyboard with Bangla
A4TECH FBK30 Bluetooth & Wireless Keyboard with Bangla
  • Price: TK 2,090/-
  • special price: TK 1,850/-
  • Stock: In Stock
  • Model: FBK30
  • Dimensions: 315.00mm x 155.00mm x 24.00mm
TK 1,850/-
TK 2,090/-
Ex Tax: TK 1,850/-

Key Features

    • Brand:A4Tech
    • Model: FBK30
    • Type:Bluetooth & 2.4G Wireless
    • Warranty:1 Year
Specification
General Feature
BrandA4Tech
ModelFBK30
Type Bluetooth & 2.4G Wireless
InterfaceNano USB Receiver
OthersLayout: Windows, Android, Mac, iOS Battery: 1 AA Alkaline Battery Battery Life: about 24 Months Receiver: Nano USB Receive & USB Extension Cable
Physical Attributes
Number Of Keys86 keys
ColorStandard
Dimensions315mm x 155mm x 24mm
Backlit OptionNo
Warranty Information
Warranty1 Year
Description

Original A4TECH Fstyler FBK30 Keyboard Price in Bangladesh


The A4TECH Fstyler FBK30 Bluetooth & 2.4G Wireless Keyboard with Bangla is designed for users seeking a reliable and versatile keyboard with dual connectivity options. This keyboard supports both Bluetooth and 2.4GHz wireless connections, making it suitable for pairing with multiple devices such as laptops, desktops, tablets, and smartphones. With its sleek design and comfortable key layout, the FBK30 is ideal for both work and casual use, whether you’re typing in English or Bangla.

The keyboard is equipped with Bangla key layout, which makes it easier for users who frequently type in Bangla. This feature allows for effortless bilingual communication and productivity, catering to the needs of both personal and professional environments.

Features of A4TECH Fstyler FBK30 Keyboard

Dual Connectivity (Bluetooth & 2.4GHz Wireless): Switch seamlessly between devices using either Bluetooth or 2.4GHz wireless with a reliable connection.
Bangla Key Support: Includes Bangla key layout for efficient and comfortable bilingual typing.
Compact Design: Space-saving design with full-sized keys ensures comfort while typing for extended periods.
Multi-Device Compatibility: Compatible with a wide range of devices, including PCs, laptops, tablets, and smartphones.
Long Battery Life: The keyboard offers long-lasting battery performance, ensuring uninterrupted usage for months.
Plug and Play: Easy setup with no drivers required, simply plug the receiver or connect via Bluetooth and start typing.


Why Buy A4TECH Fstyler FBK30 from Dear IT Solution

At Dear IT Solution, you can purchase the A4TECH Fstyler FBK30 Bluetooth & 2.4G Wireless Keyboard with Bangla at the best price in Bangladesh. We offer genuine products and guarantee the best quality product insured in Bangladesh. Whether you order online or shop in-store, you can expect top-tier service and original products.


Review

Write a review

Note: HTML is not translated!
Bad Good
Critial Path: Hello world!
Hello world!
/** * @license * Copyright 2017 Google LLC * SPDX-License-Identifier: Apache-2.0 *//** * @fileoverview Diagnostic audit that lists all JavaScript libraries detected on the page */import {Audit} from '../audit.js'; import * as i18n from '../../lib/i18n/i18n.js';const UIStrings = { /** Title of a Lighthouse audit that provides detail on the Javascript libraries that are used on the page. */ title: 'Detected JavaScript libraries', /** Description of a Lighthouse audit that tells the user what this audit is detecting. This is displayed after a user expands the section to see more. No character length limits. */ description: 'All front-end JavaScript libraries detected on the page. [Learn more about this JavaScript library detection diagnostic audit](https://developer.chrome.com/docs/lighthouse/best-practices/js-libraries/).', /** Label for a column in a data table; entries will be the version numbers of the detected Javascript libraries. */ columnVersion: 'Version', };const str_ = i18n.createIcuMessageFn(import.meta.url, UIStrings);class JsLibrariesAudit extends Audit { /** * @return {LH.Audit.Meta} */ static get meta() { return { id: 'js-libraries', title: str_(UIStrings.title), scoreDisplayMode: Audit.SCORING_MODES.INFORMATIVE, description: str_(UIStrings.description), requiredArtifacts: ['Stacks'], }; }/** * @param {LH.Artifacts} artifacts * @return {LH.Audit.Product} */ static audit(artifacts) { const libDetails = artifacts.Stacks .filter(stack => stack.detector === 'js') // Don't show the fast paths in the table. .filter(stack => !stack.id.endsWith('-fast')) .map(stack => ({ name: stack.name, version: stack.version, npm: stack.npm, }));/** @type {LH.Audit.Details.Table['headings']} */ const headings = [ {key: 'name', valueType: 'text', label: str_(i18n.UIStrings.columnName)}, {key: 'version', valueType: 'text', label: str_(UIStrings.columnVersion)}, ]; const details = Audit.makeTableDetails(headings, libDetails);const debugData = { type: /** @type {const} */ ('debugdata'), stacks: artifacts.Stacks.map(stack => { return { id: stack.id, version: stack.version, }; }), };if (!libDetails.length) { return {score: null, notApplicable: true}; }return { score: 1, // Always pass for now. details: { ...details, debugData, }, }; } }export default JsLibrariesAudit; export {UIStrings};