Menu
Your Cart

A4TECH FK11 USB Keyboard Bangla

A4TECH FK11 USB Keyboard Bangla
A4TECH FK11 USB Keyboard Bangla
-13 %
A4TECH FK11 USB Keyboard Bangla
A4TECH FK11 USB Keyboard Bangla
A4TECH FK11 USB Keyboard Bangla
  • Price: TK 1,030/-
  • special price: TK 900/-
  • Stock: In Stock
  • Model: FK11
TK 900/-
TK 1,030/-
Ex Tax: TK 900/-

Key Features

    • Brand:A4Tech
    • Model:FK11
    • Type:Wired USB Keyboard
    • English with Bangla front on keys
    • Warranty:1 Year
Specification
General Feature
BrandA4Tech
ModelFK11
TypeMini Keyboard
InterfaceUSB
OthersEnglish with Bangla front on keys
Physical Attributes
Number Of Keys12 Multimedia Hot Keys
ColorBlack
Backlit OptionNo
Warranty Information
Warranty1 Year
Description

Best Price A4TECH FK11 Bangla Keyboard in BD


The A4TECH FK11 USB Mini Keyboard with Bangla black keys is a compact yet efficient keyboard that provides excellent functionality while saving space. Its small form factor makes it ideal for users who need portability without sacrificing typing comfort. The inclusion of Bangla key characters ensures that this keyboard is perfect for users who need to type in both English and Bangla, enhancing productivity for bilingual users.

With USB plug-and-play functionality, it’s easy to set up without the need for drivers or additional software. Its comfortable key structure provides a smooth typing experience, and the durable design ensures that the keyboard can withstand daily use. The mini keyboard design offers the benefits of portability without compromising on essential features, making it an excellent choice for on-the-go work or home use.

Features of A4TECH FK11 USB Mini Keyboard with Bangla Black

Compact Design: Space-saving layout that fits in tight workspaces or is easy to carry.
Bangla Key Characters: Includes both English and Bangla letters, ideal for bilingual users in Bangladesh.
USB Connectivity: Easy plug-and-play setup without any driver installation.
Durable Construction: Built to last with a robust design, making it suitable for everyday use.
Comfortable Typing: Low-profile keys designed for smooth and quiet typing.
Compatible with All Devices: Works with Windows, macOS, and Linux systems without compatibility issues.


Why Buy A4TECH FK11 USB Mini Keyboard from Dear IT Solution

Purchase the A4TECH FK11 USB Mini Keyboard with Bangla Black from Dear IT Solution at the best price in Bangladesh. We ensure that our products are original and offer the best quality product insured in Bangladesh. Whether you choose to buy online or visit our store, you can rely on receiving genuine products with excellent service.

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};