Menu
Your Cart

MSI B760M PROJECT ZERO m-ATX Motherboard

MSI B760M PROJECT ZERO m-ATX Motherboard
MSI B760M PROJECT ZERO m-ATX Motherboard
MSI B760M PROJECT ZERO m-ATX Motherboard
MSI B760M PROJECT ZERO m-ATX Motherboard
MSI B760M PROJECT ZERO m-ATX Motherboard
MSI B760M PROJECT ZERO m-ATX Motherboard
MSI B760M PROJECT ZERO m-ATX Motherboard
MSI B760M PROJECT ZERO m-ATX Motherboard
MSI B760M PROJECT ZERO m-ATX Motherboard
  • Price: TK 23,700/-
  • Stock: In Stock
  • Model: B760M PROJECT ZERO
TK 23,700/-
Ex Tax: TK 23,700/-

Key Features

    • Model: B760M PROJECT ZERO
    • Supported CPU: 14th/13th/12th Gen Intel Processors (LGA1700)
    • Supported RAM: 4x DDR5, Max 192GB
    • Graphics Output: 1x HDMI, 1x DisplayPort
    • Features: Realtek 2.5Gbps LAN, Intel Wi-Fi 6E
    Specification
    General Feature
    BrandMSI
    ModelB760M PROJECT ZERO
    Processor
    ChipsetINTEL B760
    Memory Specifications
    Number of Memory Slots4x DIMM
    Memory TypeDDR5
    Connectivity
    HDMI1x HDMI 1.4
    Storage
    Storage Type2x M.2 M.2_1 Source (From CPU) supports up to PCIe 4.0 x4 , supports 2280/2260/2242 devices M.2_2 Source (From Chipset) supports up to PCIe 4.0 x4 / SATA mode, supports 2280/2260/2242 devices 4x SATA 6G
    Graphics
    Graphics ModelSupport HDMITM 2.1 with HDR, maximum resolution of 4K 60Hz* Support DP 1.4, maximum resolution of 4K 60Hz*
    Technical Info
    AudioRealtek ALC897 Codec 7.1-Channel High Performance Audio Supports S/PDIF output
    Network & Connection
    LanRealtek 2.5Gbps LAN
    Others
    Special Features4x EZ Debug LED
    Physical Attributes
    USB4x USB 2.0 (Rear) 4x USB 2.0 (Front) 2x USB 3.2 Gen1 Type A (Front) 3x USB 3.2 Gen2 Type A (Rear) 1x USB 3.2 Gen2 Type C (Front) 1x USB 3.2 Gen2x2 Type C (Rear)
    Warranty Information
    Warranty03 Years
    Description

    MSI B760M PROJECT ZERO m-ATX Motherboard

    The MSI B760M PROJECT ZERO m-ATX Motherboard is designed for next-level performance and modern cable management. It supports 14th, 13th, and 12th Gen Intel processors (LGA1700), delivering efficient computing power for gamers, creators, and professionals.

    With 4x DDR5 RAM slots, this motherboard supports up to 192GB of high-speed memory, ensuring lightning-fast performance for multitasking, gaming, and demanding applications. It also features Realtek 2.5Gbps LAN and Intel Wi-Fi 6E, offering super-fast network connectivity with minimal latency.

    The B760M PROJECT ZERO includes 1x HDMI and 1x DisplayPort, allowing for crystal-clear visuals and multi-display setups. Additionally, its Project Zero design routes cables to the back of the motherboard, creating a cleaner and more organized PC build while enhancing airflow and aesthetics.

    Buying Suggestion from Dear IT Solution

    For customers in Bangladesh, the MSI B760M PROJECT ZERO m-ATX Motherboard is available at Dear IT Solution, your trusted source for high-quality PC components. We offer competitive pricing and genuine products, ensuring you receive the best value for your investment.

    At Dear IT Solution, we prioritize customer satisfaction, providing fast delivery, secure purchases, and excellent customer support. Whether you're building a new system or upgrading your existing setup, we ensure authentic hardware and a 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};