Menu
Your Cart

Value-Top T24IF 23.8" FHD 75Hz Monitor

Value-Top T24IF 23.8" FHD 75Hz Monitor
Value-Top T24IF 23.8" FHD 75Hz Monitor
Value-Top T24IF 23.8" FHD 75Hz Monitor
Value-Top T24IF 23.8" FHD 75Hz Monitor
Value-Top T24IF 23.8" FHD 75Hz Monitor
Value-Top T24IF 23.8" FHD 75Hz Monitor
Value-Top T24IF 23.8" FHD 75Hz Monitor
Value-Top T24IF 23.8" FHD 75Hz Monitor
Value-Top T24IF 23.8" FHD 75Hz Monitor
  • Price: TK 15,400/-
  • Stock: In Stock
  • Model: T24IF
TK 15,400/-
Ex Tax: TK 15,400/-

Key Features

    • Model: T24IF
    • Resolution: FHD (1920×1080)
    • Display: IPS, 75Hz, 5ms
    • Ports: HDMI, VGA, Audio in, DC
    • Features: Low Blue Light
    Specification
    Display Features
    Display Size23.8"
    Display TypeLED Backlit Display
    Aspect Ratio16:9
    Viewing Angle178°(H)/178°(V)
    Brightness250cd/m2
    Contrast Ratio1000:1
    Refresh Rate75Hz
    Response Time5ms
    Connectivity
    HDMI1x HDMI
    VGA1x VGA
    Physical Attributes
    ColorBlack
    Warranty Information
    Warranty03 Year Warranty
    Description

    Value-Top T24IF 23.8" FHD 75Hz Monitor – Crystal Clear Display

    The Value-Top T24IF 23.8" FHD 75Hz Monitor is designed to deliver stunning visuals and smooth performance, making it an excellent choice for work, entertainment, and gaming. With a Full HD (1920x1080) resolution, this monitor ensures crystal-clear images, vibrant colors, and sharp details, perfect for professional and personal use.

    Equipped with a 75Hz refresh rate, the Value-Top T24IF provides smoother motion, reducing screen tearing and stuttering for an improved viewing experience. Its ultra-slim bezels offer an immersive display, making it ideal for multi-monitor setups.

    The monitor features advanced eye-care technology, including flicker-free performance and low blue light mode, reducing eye strain during extended usage. Its wide viewing angles and high contrast ratio ensure consistent image quality from any perspective.

    Buy from Dear IT Solution – Best Price in Bangladesh!

    Purchase the Value-Top T24IF 23.8" FHD 75Hz Monitor from Dear IT Solution at the best price in Bangladesh. As a best quality product insured in Bangladesh, this monitor guarantees durability, high performance, and superior display clarity. Order now for a next-level visual 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};