Menu
Your Cart

HP DA 15-DB 15T-DA 15T-DB TPN-C135 TPN-C136 Laptop Keyboard

HP DA 15-DB 15T-DA 15T-DB TPN-C135 TPN-C136 Laptop Keyboard
-15 %
HP DA 15-DB 15T-DA 15T-DB TPN-C135 TPN-C136 Laptop Keyboard
  • Price: TK 1,000/-
  • special price: TK 850/-
  • Stock: In Stock
  • Model: DA 15-DB 15T-DA
TK 850/-
TK 1,000/-
Ex Tax: TK 850/-

Key Features

    • Laptop Keyboard For HP -DA 15-DB 15T-DA
    • Keyboard Layout: US & UK
    • Baklight Feature: No
    • Warranty: 03 Month
    Specification
    General Feature
    BrandHP
    ModelDA 15-DB 15T-DA
    Physical Attributes
    ColorBlack
    Backlit OptionNo
    LayoutUS & UK
    Compatible WithHP -DA 15-DB 15T-DA 15T-DB TPN-C135 TPN-C136
    Warranty Information
    Warranty03 Month
    Description

    HP DA 15-DB 15T-DA 15T-DB TPN-C135 TPN-C136 Laptop Keyboard

    The HP DA 15-DB 15T-DA 15T-DB TPN-C135 TPN-C136 Laptop Keyboard is a high-quality replacement keyboard designed for HP 15-inch series laptops. If your existing keyboard is malfunctioning, missing keys, or unresponsive, this replacement keyboard ensures a seamless typing experience with precision and durability.

    Designed for HP DA 15-DB, 15T-DA, 15T-DB, TPN-C135, and TPN-C136 models, this keyboard provides full compatibility and easy installation, making it the perfect solution for restoring your laptop’s performance. The key layout and spacing match the original design, ensuring a comfortable and familiar typing experience.

    With high-quality materials and durable construction, this keyboard is built to withstand daily wear and tear. The keys offer smooth keystrokes, excellent feedback, and responsive performance, making it suitable for both work and entertainment. The sturdy keycaps and strong internal mechanisms reduce the risk of premature wear, allowing for long-term usability.

    Replacing your keyboard is simple, requiring minimal technical knowledge. The HP DA 15-DB 15T-DA 15T-DB TPN-C135 TPN-C136 Laptop Keyboard is designed for a perfect fit within your laptop’s chassis, ensuring an easy installation process without the need for complex modifications. Once installed, it restores full typing functionality, improving overall laptop usability.

    This keyboard maintains the original aesthetic of your laptop, blending seamlessly with its design. It is available in standard layouts and color options, ensuring that your device retains its professional and stylish appearance.


    Buying Suggestions from Dear IT Solution

    Get the HP DA 15-DB 15T-DA 15T-DB TPN-C135 TPN-C136 Laptop Keyboard from Dear IT Solution at the best price in Bangladesh. As a best quality product insured in Bangladesh, this replacement keyboard guarantees reliability, durability, and a smooth typing experience. Order now to restore your laptop’s performance with confidence!

    Let me know if you need any modifications

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