Menu
Your Cart

Epson 005 Black Ink Bottle

Epson 005 Black Ink Bottle
Epson 005 Black Ink Bottle
  • Price: TK 1,150/-
  • Stock: In Stock
  • Model: 005 Black
TK 1,150/-
Ex Tax: TK 1,150/-

Key Features

    • MPN: C13T03Q100
    • Model: 005 Black
    • Printing Color: Black
    • Printing Technology: Ink
    • Page yield: 6000 pages
    • Supports: M1100, M1120, M1140, M2140, M3170 Ink Printers
    Specification
    General Feature
    BrandEpson
    Printing ColorBlack
    Model005 Black
    Printing TechnologyInk Jet
    Page Yield6000 Pages
    Supported Printer M1100, M1120, M1140, M2140, M3170 Ink Printers
    Warranty Information
    WarrantyNo Warranty
    Description

    Epson 005 Black Ink Bottle

    The Epson 005 Black Ink Bottle is designed to provide high-quality, reliable black ink for your Epson EcoTank printers. With a generous 70ml capacity, this ink bottle ensures long-lasting printing performance, reducing the need for frequent replacements. The ink is formulated to deliver sharp, crisp black text and detailed images, making it ideal for both professional documents and personal printing tasks.

    The Epson 005 Black Ink Bottle utilizes advanced ink technology that produces smooth, consistent prints, with a high yield for maximum efficiency. This ink bottle is engineered for use with Epson EcoTank printers, offering a cost-effective printing solution without compromising on quality. Whether you're printing black-and-white documents, text-heavy pages, or high-quality images, this ink ensures reliable results every time.

    Thanks to its innovative design, the ink bottle is easy to refill, ensuring a mess-free process that is convenient for regular use. The ink is also fade-resistant, helping to maintain the integrity of your prints over time, making it a great option for archiving important documents and creating professional prints.

    Buying Suggestions from Dear IT Solution

    For customers in Bangladesh, the Epson 005 Black Ink Bottle is available at Dear IT Solution, your trusted source for high-quality printer supplies and accessories.

    At Dear IT Solution, we offer the Epson 005 Black Ink Bottle at competitive prices, ensuring you get excellent value for your investment. With our user-friendly online store, you can easily find the right ink for your printer and have it delivered directly to your doorstep in no time.

    If you need assistance or have any questions about the Epson 005 Black Ink Bottle, our dedicated team is here to provide expert support and advice. Choose Dear IT Solution for all your printing needs and enjoy a seamless, hassle-free shopping experience.


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