CINXE.COM
Bookmark| HT Tech
<!DOCTYPE html> <html lang="en"> <head> <script> var userAgentString = navigator.userAgent; var chromeAgent = userAgentString.indexOf("Chrome") > -1; var type =''; var downLink; var isSlowNetwork=false; if(chromeAgent){ var connection = navigator.connection || navigator.mozConnection || navigator.webkitConnection; var type = connection.effectiveType; var downLink = connection.downlink; if((type=='2g'||type=='3g' || type=='4g')&& downLink<=1.5){ isSlowNetwork=true; } } </script><script type="text/javascript"> console.log("async call to snowplow"); if (window.location.hostname.toString() == "stg-tech.hindustantimes.com" || window.location.hostname.toString() == "stg1-tech.hindustantimes.com" || window.location.hostname.toString() == "qa-tech.hindustantimes.com" || window.location.hostname.toString() == "localhost" || window.location.hostname.toString() == "preprod-tech.hindustantimes.com") { var configObject = { "appId": "tc", "collectorHost": "dap.hindustantimes.com", "pageViewRequired": true, "pagePingRequired": false, "pagePing": {"intialTimer": 10, "interval": 5}, "syncRequired": true, "existingImpressionCapture": false, "existingLinkClickCapture": false, }; (function (p, l, o, w, i, k, n, g) { if (!p[i]) { p.GlobalSnowplowNamespace = p.GlobalSnowplowNamespace || []; p.GlobalSnowplowNamespace.push(i); p[i] = function () { (p[i].q = p[i].q || []).push(arguments); }; p[i].q = p[i].q || []; n = l.createElement(o); g = l.getElementsByTagName(o)[0]; n.async = 1; n.src = w; g.parentNode.insertBefore(n, g); n.onload = function () { window.dapTracker = new window.dapDataTracker(); dapTracker.init(k); } } }(window, document, 'script', "https://analytics.dev.htmedia.in/app/tracker.js", 'snowplow', configObject)); } else { var configObject = { "appId": "tc", "collectorHost": "dap.hindustantimes.com", "pageViewRequired": true, "pagePingRequired": false, "pagePing": {"intialTimer": 10, "interval": 5}, "syncRequired": true, "existingImpressionCapture": false, "existingLinkClickCapture": false, }; (function (p, l, o, w, i, k, n, g) { if (!p[i]) { p.GlobalSnowplowNamespace = p.GlobalSnowplowNamespace || []; p.GlobalSnowplowNamespace.push(i); p[i] = function () { (p[i].q = p[i].q || []).push(arguments); }; p[i].q = p[i].q || []; n = l.createElement(o); g = l.getElementsByTagName(o)[0]; n.async = 1; n.src = w; g.parentNode.insertBefore(n, g); n.onload = function () { window.dapTracker = new window.dapDataTracker(); dapTracker.init(k); } } }(window, document, 'script', "https://analytics.htmedia.in/analytics-js/tracker.js", 'snowplow', configObject)); } </script> <script type="text/javascript"> // this function will act as a lock and will call the GPT API function initAdserver(forced) { if ((forced === true && window.initAdserverFlag !== true) || (PWT.a9_BidsReceived && PWT.ow_BidsReceived)) { window.initAdserverFlag = true; PWT.a9_BidsReceived = PWT.ow_BidsReceived = false; googletag.pubads().refresh(); } } </script> <script> var timeStampVal=1000; var timeStampValApi=1000; if(isSlowNetwork){ timeStampVal=2000; timeStampValApi=2000; } window.addEventListener('load', (event) => { setTimeout(function () { httechGPTScript(); httechPWAScript(); }, timeStampVal); setTimeout(function () { httechAPSScript(); }, timeStampValApi); }); function getCookie(cname) { var name = cname + "="; var decodedCookie = decodeURIComponent(document.cookie); var ca = decodedCookie.split(';'); for (var i = 0; i < ca.length; i++) { var c = ca[i]; while (c.charAt(0) == ' ') { c = c.substring(1); } if (c.indexOf(name) == 0) { return c.substring(name.length, c.length); } } return ""; } </script> <script> var isMobile=false; var isTablet=false; var isDesktop=false; var isLargeDesktop=false; var WFClientTypeDef = {"large":"(min-width: 1024px)","small":"(max-width: 767px)","medium":"(min-width: 768px) and (max-width: 1023px)"}; for ( var type in WFClientTypeDef) { if (window.matchMedia(WFClientTypeDef[type]).matches) { switch (type) { case "large": isDesktop=true; break; case "medium": isTablet=true; break; case "small": isMobile=true; break; } break; }} function isDeviceEnabled(skipOnDeviceValue) { if(skipOnDeviceValue=="large" && isDesktop) {return true;} if(skipOnDeviceValue=="medium" && isTablet) {return true;} if(skipOnDeviceValue=="small" && isMobile) {return true;} return false; } </script> <script> function setWithExpiryCDP(key, value, ttl) { const now = new Date(); const item = { value: value, expiry: now.getTime() + ttl, }; localStorage.setItem(key, JSON.stringify(item)) } function getWithExpiryCDP(key) { const itemStr = localStorage.getItem(key); if (!itemStr) { return null; } const item = JSON.parse(itemStr); const now = new Date(); if (now.getTime() > item.expiry) { localStorage.removeItem(key); return null; } return item.value; } function callCDPServeAPI(){ if(window.location.origin.toString()=="https://tech.hindustantimes.com"){ var cookieHtFp = getCookie("_ht_fp"); }else { var cookieHtFp = getCookie("_ht_fp_dev"); } var cookiehtCdp = getWithExpiryCDP("tc_cdp"); var cdpApiUrl = "https://tech.hindustantimes.com/api/adserve/tc?user="+cookieHtFp; if(cookieHtFp && !cookiehtCdp) { var xhr = new XMLHttpRequest(); xhr.open('GET', cdpApiUrl); xhr.timeout = 800; xhr.responseType = 'json'; xhr.onload = function () { if(xhr.status == 200){ let jsonData = xhr.response; if (jsonData != '' && jsonData.campaigns != undefined) { campaigns = jsonData.campaigns; setWithExpiryCDP("tc_cdp", JSON.stringify(campaigns), 86400000); } } }; xhr.send(null); } } window.addEventListener('load', (event) => { setTimeout(function () { callCDPServeAPI(); }, 500); }); </script> <script> function httechGPTScript(){ var wtads = document.createElement('script'); wtads.defer = true; wtads.type = 'text/javascript'; wtads.src = "https://www.googletagservices.com/tag/js/gpt.js"; var node = document.getElementsByTagName('script')[0]; node.parentNode.insertBefore(wtads, node); } </script> <!-- OpwenWrap Script begins here --> <script type="text/javascript"> var PWT = {}; var googletag = googletag || {}; googletag.cmd = googletag.cmd || []; var pageType = "section"; console.log("call cdapi on asyn from new-top-adcode"); var campaigns = ''; var cdpApiUrl = "https://tech.hindustantimes.com/api/adserve/tc?user="; googletag.cmd.push(function () { function setWithExpiryCDP(key, value, ttl) { const now = new Date(); const item = { value: value, expiry: now.getTime() + ttl, }; localStorage.setItem(key, JSON.stringify(item)) } function getWithExpiryCDP(key) { const itemStr = localStorage.getItem(key); if (!itemStr) { return null; } const item = JSON.parse(itemStr); const now = new Date(); if (now.getTime() > item.expiry) { localStorage.removeItem(key); return null; } return item.value; } if(window.location.origin.toString()=="https://tech.hindustantimes.com"){ var cookieValue = getCookie("_ht_fp"); }else { var cookieValue = getCookie("_ht_fp_dev"); } let htCdp = getWithExpiryCDP("tc_cdp"); let requestUrl = cdpApiUrl + cookieValue; if (!htCdp && cookieValue) { var xhr = new XMLHttpRequest(); xhr.open('GET', requestUrl); xhr.timeout = 900; xhr.responseType = 'json'; xhr.onload = function () { let campaigns = ''; if(parseInt(xhr.status) === 200){ let jsonData = xhr.response; if (jsonData !== '' && jsonData.campaigns !== undefined) { campaigns = jsonData.campaigns; setWithExpiryCDP("tc_cdp", JSON.stringify(campaigns), 86400000); googletag.pubads().setTargeting('cdpcampaign', campaigns); } } }; xhr.send(null); } else { googletag.pubads().setTargeting('cdpcampaign', JSON.parse(htCdp)); } }); function httechPWAScript(){ (function() { var purl = window.location.href; var url = 'https://ads.pubmatic.com/AdServer/js/pwt/156370/9275'; var profileVersionId = ''; if (purl.indexOf('pwtv=') > 0) { var regexp = /pwtv=(.*?)(&|$)/g; var matches = regexp.exec(purl); if (matches.length >= 2 && matches[1].length > 0) { profileVersionId = '/' + matches[1]; } } var wtads = document.createElement('script'); wtads.defer = true; wtads.type = 'text/javascript'; wtads.src = url + profileVersionId + '/pwt.js'; var node = document.getElementsByTagName('script')[0]; node.parentNode.insertBefore(wtads, node); })(); } </script> <!--Wrapper Script ends here --> <script type="text/javascript"> function initAdserver(forced) { if((forced === true && window.initAdserverFlag !== true) || (PWT.a9_BidsReceived && PWT.ow_BidsReceived)){ window.initAdserverFlag = true; PWT.a9_BidsReceived = PWT.ow_BidsReceived = false; googletag.pubads().refresh(); } } </script> <!-- A9 Script Start --> <script> function q(c, r) { apstag._Q.push([c, r]); } var apstag = { init: function () { q("i", arguments); }, fetchBids: function () { q("f", arguments); }, setDisplayBids: function () {}, _Q: [], }; var apsSlots = []; if(isDeviceEnabled('large')) { apsSlots = [{ slotID: 'div-gpt-ad-1582279226287-0', sizes: [[970, 66], [728, 90], [970, 90], [980, 90], [950, 90], [960, 90], [750, 100], [980, 120], [930, 180], [750, 200], [970, 250], [1290, 250], [580, 400]] },{ slotID: 'adslot1', sizes: [[970, 250]] }]; } if(isDeviceEnabled('small')) { apsSlots = [{ slotID: 'div-gpt-ad-1582279226287-0', sizes: [[320, 50], [320, 100],[300, 250]] }]; } apstag.init({ pubID: '04490307-82e6-4a26-8a03-ce88452d8ffd', adServer: 'googletag' }); function httechAPSScript(){ let aps = document.createElement('script'); aps.defer = true; aps.type = 'text/javascript'; aps.src = "https://c.amazon-adsystem.com/aax2/apstag.js"; var node = document.getElementsByTagName('script')[0]; node.parentNode.insertBefore(aps, node); apstag.init({ pubID: '04490307-82e6-4a26-8a03-ce88452d8ffd', adServer: 'googletag' }); getBids(apsSlots); } function getBids(slot) { apstag.fetchBids( { slots: slot, timeout: 2e3 }, function (bids) { googletag.cmd.push(function () { apstag.setDisplayBids(); PWT.a9_BidsReceived = true; initAdserver(false); }); }); } </script> <!-- A9 Script End --> <script type="text/javascript"> function getCookie(cname) { var name = cname + "="; var decodedCookie = decodeURIComponent(document.cookie); var ca = decodedCookie.split(';'); for (var i = 0; i < ca.length; i++) { var c = ca[i]; while (c.charAt(0) == ' ') { c = c.substring(1); } if (c.indexOf(name) == 0) { return c.substring(name.length, c.length); } } return ""; } var ppidValue = getCookie('ppid'); let params = (new URL(document.location)).searchParams; let utm_medium = params.get("utm_medium"); let utm_source = params.get("utm_source"); function dfpWrapper(jsonData = '') { googletag.cmd.push(function() { if(isDeviceEnabled('large')) { if (pageType == "home"){ googletag.defineSlot('/3106570/HT_TECH_DESK_HOME_OSV_1x1', [1, 1], 'div-gpt-ad-1597998800754-0').addService(googletag.pubads()); googletag.defineSlot('/1055314/HT_TECH_Desk_Home_Header_Multisize', [[970, 250],[1290, 250],[970, 90],[728, 90],[980, 90],[980, 250],[980, 200]], 'adslot1').addService(googletag.pubads()); }else if(pageType == "section"){ googletag.defineSlot('/1055314/HT_TECH_Desk_Section_Header_Multisize', [[970, 66], [728, 90], [970, 90], [980, 90], [950, 90], [960, 90], [750, 100], [980, 120], [930, 180], [750, 200], [970, 250], [1290, 250]], 'div-gpt-ad-1582279226287-0').addService(googletag.pubads()); }else if(pageType == "story"){ googletag.defineSlot('/1055314/HT_TECH_Desk_Story_Header_Multisize', [[970, 250]], 'div-gpt-ad-1582279226287-0').addService(googletag.pubads()); } googletag.defineSlot('/1055314/HT_TECH_Desk_Adrefresh_1x1', [[1, 1]], 'adRefresh').addService(googletag.pubads()); } if(isDeviceEnabled('small')) { if (pageType == "home"){ googletag.defineSlot('/1055314/HT_TECH_WAP_Home_Masthead_Multisize',[[300,250],[250, 250]], 'div-gpt-ad-1582279226287-0').addService(googletag.pubads()); }else if(pageType == "section"){ googletag.defineSlot('/1055314/HT_TECH_WAP_Section_Masthead_Multisize', [[300, 250], [250, 250]], 'div-gpt-ad-1582279226287-0').addService(googletag.pubads()); }else if(pageType == "story"){ } googletag.defineSlot('/1055314/HT_TECH_WAP_Adrefresh_1x1', [[1, 1]], 'adRefresh').addService(googletag.pubads()); } googletag.pubads().setTargeting("section", ""); googletag.pubads().setTargeting("subsection", ""); googletag.pubads().setTargeting("tags", "Mobile phone review,News,Gadgets News,HT Tech,Gaming Updates,Technology News,Tech news"); if(utm_medium !=null && utm_source !=null){ googletag.pubads().setTargeting("Traffic_Source", utm_medium+"_"+utm_source); } googletag.pubads().enableSingleRequest(); googletag.pubads().collapseEmptyDivs(); googletag.pubads().disableInitialLoad(); if(ppidValue != "" && ppidValue != null) { googletag.pubads().setPublisherProvidedId(ppidValue); } googletag.enableServices(); if(typeof PWT.requestBids === 'function'){ PWT.requestBids( PWT.generateConfForGPT(googletag.pubads().getSlots()), function(adUnitsArray) { PWT.addKeyValuePairsToGPTSlots(adUnitsArray); PWT.ow_BidsReceived = true; initAdserver(false); } ); } var FAILSAFE_TIMEOUT = 3000; setTimeout(function() { initAdserver(true); }, FAILSAFE_TIMEOUT); }); } </script><script id="_webengage_script_tag" type="text/javascript"> var webengage; ! function(w, e, b, n, g) { function o(e, t) { e[t[t.length - 1]] = function() { r.__queue.push([t.join("."), arguments]) } } var i, s, r = w[b], z = " ", l = "init options track screen onReady".split(z), a = "feedback survey notification".split(z), c = "options render clear abort".split(z), p = "Open Close Submit Complete View Click".split(z), u = "identify login logout setAttribute".split(z); if (!r || !r.__v) { for (w[b] = r = { __queue: [], __v: "6.0", user: {} }, i = 0; i < l.length; i++) o(r, [l[i]]); for (i = 0; i < a.length; i++) { for (r[a[i]] = {}, s = 0; s < c.length; s++) o(r[a[i]], [a[i], c[s]]); for (s = 0; s < p.length; s++) o(r[a[i]], [a[i], "on" + p[s]]) } for (i = 0; i < u.length; i++) o(r.user, ["user", u[i]]); setTimeout(function() { var f = e.createElement("script"), d = e.getElementById("_webengage_script_tag"); f.type = "text/javascript", f.async = !0, f.src = ("https:" == e.location.protocol ? "https://ssl.widgets.webengage.com" : "http://cdn.widgets.webengage.com") + "/js/webengage-min-v-6.0.js", d.parentNode.insertBefore(f, d) },5000) } }(window, document, "webengage"); webengage.init('d3a4a617'); webengage.options('delay', 5000); /*webengage.options('webpush.disablePrompt', true);*/ webengage.options('webpush.registerServiceWorker', false); webengage.onReady(function () { webengage.webpush.prompt(); }); </script><title>Bookmark| HT Tech</title> <link rel="canonical" href="https://tech.hindustantimes.com/common/bookmark/article"/> <meta name="description" content="Bookmark Article | HT Tech" /> <meta name="robots" content="index, follow, max-image-preview:large, max-snippet:-1, max-video-preview:-1"> <meta property="og:title" content="Bookmark| HT Tech" /> <meta property="og:description" content="Bookmark Article | HT Tech"/> <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"/> <style>#laptopComparison,#tabletComparison{display:none}.adsHeight300x250,.adsHeight720x90,.headerAds250,.footerAds250{position:relative;padding-top:21px;text-align:center;background-color:#f5f5f5;display:flex;align-items:center;justify-content:center;overflow:hidden}.FirstAd{position:relative;min-height:295px;background-color:#f5f5f5;padding-top:21px;overflow:hidden;text-align:center;margin:0px -16px}.minadsHeight300x250{position:relative;min-height:250px;background-color:#f5f5f5;padding-top:21px;overflow:hidden}.bottomStickyAds{position:fixed;text-align:center;background-color:#f5f5f5;bottom:0;width:100%;z-index:2;display:none}body.showBottomSticky .bottomStickyAds{display:block}.marginMinus{margin-left:-16px;margin-right:-16px}.adsSticky{position:sticky;top:165px}.mb20{margin-bottom:20px}.mt20{margin-top:20px}.adsHeight300x250{height:301px}.adsHeight720x90{height:137px;margin-top:20px;box-sizing:initial}.adsHeight720x90 iframe{width:100%;height:115px;position:absolute;left:50%;min-width:100%;top:50%;transform:translate(-50%, -50%)}.headerAds250{min-height:271px;margin:20px 0px}.footerAds250{height:271px;margin:20px 0px}.bottomStickyAds{height:50px}.adsHeight720x90::after,.adsHeight300x250::after,.headerAds250::after,.footerAds250::after,.FirstAd::after,.minadsHeight300x250::after{content:"Advertisement";width:95px;height:18px;display:block;position:absolute;top:1px;left:50%;transform:translateX(-50%);font-size:14px;color:#757575;font-family:"Lato Regular",sans-serif;font-weight:400}@media only screen and (min-width: 1200px){.bottomStickyAds{display:none}.marginMinus{margin-left:0px;margin-right:0px}}*{padding:0;margin:0;box-sizing:border-box}a{text-decoration:none;color:inherit}[onclick*="window.location.href"],[onclick*="window.open"]{cursor:pointer}a.title{display:inline-block}body{margin:0;font-family:"Lato Regular",sans-serif;font-weight:400;overflow-x:hidden}footer{word-break:break-word}.fourRatioThree{padding-top:75%;display:block}.oneRatioone{padding-top:100%;display:block}.sixRatioNine{padding-bottom:56.3%;display:block}.imgWrapper{position:relative;display:block;border-radius:4px;overflow:hidden;float:left;margin-right:10px}.imgWrapper img{position:absolute;top:0;left:0;width:100%;height:100%}.sectionTitle{margin-bottom:15px;padding:0px 16px}.mb25{margin-bottom:20px}.roundViewMoreBtn{font-size:14px;font-family:"Lato Bold",sans-serif;font-weight:700;color:#002b4d;border-radius:50px;border:1px solid #002b4d;padding:8.5px 10px 8.5px 10px;text-align:center;min-width:120px;width:120px;display:table;margin:8px auto 0 auto}.roundViewMoreBtn:hover{background-color:#e6f4ff;color:#002b4d}.viewAllBtn{font-size:15px;font-family:"Lato Bold",sans-serif;font-weight:700;color:#002b4d;padding:0px 0px 0px 0px;text-decoration:none;margin:0 auto;display:table;position:relative}.viewAllBtn::before{content:attr(data-before);margin-right:3px}.viewAllBtn img{margin-left:1px;vertical-align:middle;position:relative;top:-1px;width:9px;height:10px}.viewAllBtn:hover{color:#424242}.socialIcons{line-height:15px;color:#212121}.socialIcons a.fbIcon,.socialIcons a.twIcon,.socialIcons a.mailIcon,.socialIcons a.ytIcon,.socialIcons a.WtIcon{width:22px;height:22px;display:block}.socialIcons a.fbIcon img,.socialIcons a.twIcon img,.socialIcons a.mailIcon img,.socialIcons a.ytIcon img,.socialIcons a.WtIcon img{pointer-events:none}.socialIcons a.fbIcon .hover-effect,.socialIcons a.twIcon .hover-effect,.socialIcons a.ytIcon .hover-effect,.socialIcons a.WtIcon .hover-effect{display:none}.socialIcons a.fbIcon:hover .hover-effect,.socialIcons a.twIcon:hover .hover-effect,.socialIcons a.ytIcon:hover .hover-effect,.socialIcons a.WtIcon:hover .hover-effect{display:block}.socialIcons a.fbIcon:hover .not-hover,.socialIcons a.twIcon:hover .not-hover,.socialIcons a.ytIcon:hover .not-hover,.socialIcons a.WtIcon:hover .not-hover{display:none}.mobileNone{display:none}.desktopNone{display:block}@media only screen and (min-width: 1200px){.roundViewMoreBtn{font-size:16px;min-width:149px;width:149px;padding:12.5px 10px 12.5px 10px;margin:4px auto 0 auto}.mobileNone{display:block}.desktopNone{display:none}.viewAllBtn{font-size:17px}.viewAllBtn img{width:13px;height:13px}.sectionTitle{padding:0;margin-bottom:25px}.mb25{margin-bottom:25px}}.menuOverlay{background-color:rgba(0,0,0,.35);position:absolute;height:100%;position:fixed;bottom:0;left:0;width:100%;z-index:2;transition:all ease .3s;display:none}.withoutSearch .recommenderLink{margin-right:0px}@media screen and (min-width: 1200px){.withoutSearch .recommenderLink{margin-right:15px}}.recommenderLink{position:relative;margin-right:20px}@media screen and (min-width: 1200px){.recommenderLink{margin-right:15px}}.recommenderLink.active::after{display:block}.recommenderLink::after{content:"";width:8px;height:8px;display:none;background-color:#ff4d4f;position:absolute;border-radius:50%;top:-4px;right:-4px}.recommenderLink img{display:block}@media screen and (min-width: 1200px){.recommenderLink img{width:22px;height:22px}}body.openMenuOverlay{overflow-y:hidden;position:fixed;top:0;width:100%}body.openMenuOverlay header .logoWrapper{z-index:2}body.openMenuOverlay .tabLinksWrapper.scrollEvent,body.openMenuOverlay .shareLinks .shareBoxWrapper{z-index:1}body.openMenuOverlay .menuOverlay{display:block}body.profilePopupOpen{overflow-y:hidden;position:fixed;top:0;width:100%}body.profilePopupOpen header .afterSignIn .dropdownWrapper{display:block}body.profilePopupOpen header .afterSignIn .menuOverlay{display:block}body.menuShow nav.menuHeader{position:fixed;top:53.91px;opacity:1;width:100%;background-color:#fff;z-index:2}a.savedArticle{vertical-align:bottom;margin-right:5px}header .searchWrapper button[type=button]{display:none}header .searchWrapper.showCloseIcon button[type=submit]{display:none}header .searchWrapper.showCloseIcon button[type=button]{display:block}header .searchCloseIcon{width:24px;height:24px;min-width:24px;min-height:24px;border:0;background-color:rgba(0,0,0,0);cursor:pointer}header.logoMiddle a.logo{width:calc(100% - 39px);text-align:center}header.logoMiddle a.logo img{margin-left:-39px}header.logoMiddle .logoDateWrapper{width:100%}header .headerMainWrapper{min-height:156.88px}header.withoutSearch .headerMainWrapper{min-height:97.88px}header span.afterSignIn img{display:block}@media screen and (min-width: 1200px){header span.afterSignIn img{width:22px;height:22px}}header .afterSignIn{cursor:pointer}header .afterSignIn .firstLetter{width:30px;height:30px;min-width:30px;min-height:30px;display:inline-flex;align-items:center;justify-content:center;border-radius:50%;color:#fff;font-size:15px;background-color:#002b4d}header .afterSignIn.dropdownMenu .dropdownToggle .drop-icon{position:absolute;right:0;top:10px}header .afterSignIn .dropdownHeader{text-align:center;min-width:235px;border-bottom:1px solid #eee}header .afterSignIn .dropdownHeader .firstLetter{margin:10px 0px;width:40px;height:40px;min-width:40px;min-height:40px;font-size:24px}header .afterSignIn .dropdownHeader .name{font-size:16px;color:#424242;font-family:"Lato Bold",sans-serif;font-weight:700;margin-bottom:5px}header .afterSignIn .dropdownHeader .email{font-size:14px;color:hwb(0 44% 56%)}header .afterSignIn .dropdownHeader .editProfileBtn{width:140px;height:36px;min-width:140px;min-height:36px;line-height:36px;border-radius:23px;border:solid 1px #002b4d;display:inline-flex;align-items:center;justify-content:center;font-size:14px;color:#002b4d;background-color:#fff;margin:12px 0px}header .afterSignIn .dropdownHeader .editProfileBtn:hover{background-color:#e6f4ff;color:#002b4d}header .afterSignIn .dropdownWrapper{right:16px;bottom:auto;top:130px;width:auto;left:16px;border-radius:4px;display:none}header .afterSignIn .dropdownWrapper .closeIcon{top:12px;transform:none;right:12px}header .afterSignIn .dropdownWrapper li a.savedArticle,header .afterSignIn .dropdownWrapper li a.logoutBtn{padding:6px 10px 8px 31px;position:relative}header .afterSignIn .dropdownWrapper li a.savedArticle img,header .afterSignIn .dropdownWrapper li a.logoutBtn img{position:absolute;top:50%;transform:translateY(-50%);left:10px}header .hamburgerMenuBtn{width:24px;height:24px;margin-right:15px}header .hamburgerMenuBtn img{width:100%;height:100%}header .dropdownMenu.openMenu .menuOverlay{display:block}header .dropdownMenu.openMenu .dropdownWrapper{bottom:0}header nav ul.mainLi{display:flex;overflow-x:auto;border-bottom:1px solid #dbdbdb;padding-left:10px;-ms-overflow-style:none;scrollbar-width:none}header nav ul.mainLi::-webkit-scrollbar{display:none}header nav ul li{display:inline-block;position:relative}header nav ul li .subdropdownWrapper{position:relative;padding:5px 0px;display:none;transition:all ease .3s;width:auto;bottom:inherit}header nav ul li .subdropdownWrapper li a{padding:4px 10px 4px 10px;font-family:"Lato Regular",sans-serif;font-weight:400}@media(min-width: 1200px){header nav ul li .subdropdownWrapper li a{padding:6px 10px 8px 10px;font-family:"Lato Bold",sans-serif;font-weight:700}}@media(min-width: 1200px){header nav ul li .subdropdownWrapper{border-radius:4px;box-shadow:0 4px 7px 1px rgba(0,0,0,.3);background-color:#fff;position:absolute;display:block;min-width:171px;visibility:hidden;top:0;left:calc(100% + 2px);opacity:0;z-index:-1}}header nav ul li.subMenu.openMenu .subdropdownWrapper{display:block;height:212px;overflow:auto}header nav ul li.subMenu.openMenu .anchor-wr>a img{transform:translateY(-50%) rotate(180deg)}header nav ul li.subMenu li{border-bottom:0}@media(min-width: 1200px){header nav ul li.subMenu li{border-bottom:1px solid #eee}}header nav ul li.subMenu .anchor-wr>a{position:relative}header nav ul li.subMenu .anchor-wr>a img{position:absolute;right:5px;top:50%;transform:translateY(-50%) rotate(0deg)}@media(min-width: 1200px){header nav ul li.subMenu .anchor-wr>a img{transform:translateY(-50%) rotate(270deg)}}header nav ul li.subMenu:hover ul.subdropdownWrapper{opacity:1;z-index:2;visibility:visible}header nav ul li a{font-size:14px;font-family:"Lato Bold",sans-serif;font-weight:700;color:#424242;margin-right:11px;text-decoration:none;padding:13px 7px;display:inline-block;position:relative;white-space:nowrap;text-transform:capitalize}header nav ul li a.newTag.dropdownToggle span{right:-7px}header nav ul li a.newTag span{width:35px;height:15px;position:absolute;top:.5px;right:-7px}header nav .container{display:flex;justify-content:space-between;flex-direction:column}header .socialIcons{font-size:14px;color:#212121;font-family:"Lato Bold",sans-serif;font-weight:700;display:flex;align-items:center}header .socialIcons .d-flex{display:none}header .logoDateWrapper{display:flex;align-items:center}header .logoDateWrapper h1{font-size:11px}header .headerWrapper{display:flex;align-items:center;justify-content:space-between;position:relative}header .logowrapperMain{min-height:53.91px}header .logoWrapper{padding:10px 16px;border-bottom:1px solid #dbdbdb;position:fixed;top:0;left:0;right:0;width:100%;background-color:#fff;z-index:3}header .logoWrapper .logo img{width:104px;height:auto;pointer-events:none}header ul li{list-style:none}header .dropdownWrapper{position:fixed;bottom:-200%;z-index:3;top:auto;width:100%;left:0;border-top-left-radius:12px;border-top-right-radius:12px;box-shadow:0 4px 7px 1px rgba(0,0,0,.3);background-color:#fff;transition:all ease .3s}header .dropdownWrapper .closeIcon{width:24px;height:24px;position:absolute;top:50%;transform:translateY(-50%);right:10px;cursor:pointer}header .dropdownWrapper .heading{font-size:16px;letter-spacing:normal;color:#424242;display:block;position:relative;text-align:center;font-family:"Lato Black",sans-serif;font-weight:700;border-bottom:1px solid #eee;padding:15px 10px 15px 10px}header .dropdownWrapper .heading a{margin-right:0px;width:calc(100% - 70px);padding:0;font-size:16px;font-family:"Lato Black",sans-serif}header .dropdownWrapper .heading a:after{content:attr(data-text)}header .dropdownWrapper .heading a:hover{background-color:rgba(0,0,0,0)}header .dropdownWrapper .heading a:hover:before{display:none}header .dropdownWrapper a:hover{background-color:#eee}header .dropdownWrapper li:last-of-type{border-bottom:0}header nav ul li .dropdownWrapper li a:hover:before{display:none}header .anchor-wr{position:relative}header .dropdownMenu .dropdownToggle{position:relative;padding-right:20px;cursor:pointer}header .dropdownMenu .dropdownToggle.mwebMenu{position:absolute;top:0;left:0;right:0;width:100%;height:100%;z-index:1}@media(min-width: 1200px){header .dropdownMenu .dropdownToggle.mwebMenu{display:none}}header .dropdownMenu .dropdownToggle .drop-icon{width:20px;height:20px;position:absolute;top:50%;transform:translateY(-50%);right:0}header .dropdownWrapper li{display:block;padding:5px;border-bottom:1px solid #eee}header .dropdownWrapper li a{font-size:14px;color:#424242;padding:14px 10px 14px 10px;margin:0;display:block;border-radius:4px;text-transform:capitalize}header .dropdownWrapper li a.mobileNone{display:none}@media(min-width: 1200px){header .dropdownWrapper li a.mobileNone{display:block}}header .dropdownWrapper li a.desktopNone{display:block}@media(min-width: 1200px){header .dropdownWrapper li a.desktopNone{display:none}}header nav ul li a.active{color:#002b4d;font-family:"Lato Black",sans-serif;font-weight:900}header nav ul li a.active:before{display:block}header nav ul li a.dropdownToggle::before,header nav ul li a:not(.dropdownToggle)::before{content:"";position:absolute;background-color:#00b1cd;height:4px;width:100%;border-radius:5px;bottom:0;left:0;display:none}header li a.active:hover::before{display:block !important}header nav ul li a:not(.dropdownToggle):hover,header nav ul li a.active{color:#002b4d}header nav ul li a:not(.dropdownToggle):hover:before,header nav ul li a.active:before{display:block}header nav{box-shadow:0 3px 10px 0 rgba(0,0,0,.16)}header nav ul{padding:0;margin:0}header .searchIcon{width:24px;height:24px;min-width:24px;min-height:24px;border:0;background-color:rgba(0,0,0,0);cursor:pointer}header .searchIcon img{width:100%;height:100%}header .searchWrapper{width:calc(100% - 40px);margin:12px auto 12px auto;height:38px;min-height:38px;border-radius:4px;background-color:#e6f4ff;display:flex;align-items:center;padding:0px 16px;border:1px solid #e6f4ff}header .searchWrapper.focus{border:1px solid #002b4d}header .searchWrapper input{width:calc(100% - 24px);border-radius:4px;font-size:14px;font-family:"Lato Bold",sans-serif;font-weight:700;line-height:16px;background-color:#e6f4ff;color:#002b4d;border:0}header .searchWrapper input:focus{outline:none}header .searchWrapper input::-webkit-input-placeholder{color:#002b4d;font-family:"Lato Regular",sans-serif;font-weight:400}header .searchWrapper input:-ms-input-placeholder{color:#002b4d;font-family:"Lato Regular",sans-serif;font-weight:400}header .searchWrapper input::placeholder{color:#002b4d;font-family:"Lato Regular",sans-serif;font-weight:400}body.sidebarMenuOpen{overflow-y:hidden;position:fixed;top:0;width:100%}body.sidebarMenuOpen .menuOverlay{display:block}body.sidebarMenuOpen .sidebar{left:0px}body.sidebarMenuOpen header .logoWrapper{z-index:2}.sidebar{position:fixed;left:-280px;bottom:0;top:0;z-index:3;width:280px;-webkit-transition:left .5s ease;transition:left .5s ease;background-color:#fafafa;width:280px}.sidebar .body{overflow-y:auto;height:calc(100% - 60px)}.sidebar .header{padding:13px 16px;position:relative;border-bottom:solid 1px #dbdbdb}.sidebar .header .closeIcon{width:24px;height:24px;background-size:100% 100%;position:absolute;top:50%;transform:translateY(-50%);right:10px;cursor:pointer;border:0;background-color:rgba(0,0,0,0)}.sidebar p{font-size:14px;color:#424242;padding:20px 16px}.sidebar label{font-size:16px;font-family:"Lato Bold",sans-serif;font-weight:700;color:#212121;padding:20px 16px 8px 16px;display:block;text-transform:uppercase}.sidebar .li{position:relative;border-bottom:solid 1px #dbdbdb;padding:12px 16px;list-style:none}.sidebar .li .ul{display:none;-webkit-transition:all .5s ease;transition:all .5s ease}.sidebar .li .ul .li{border:0;padding:14px 10px 0px 10px}.sidebar .li .ul .li a{font-size:14px;color:#424242;font-family:"Lato Regular",sans-serif;font-weight:400}.sidebar .li.submenuLi.active .ul.submenuUl{display:block}.sidebar .li.submenuLi.active button.submenuBtn{transform:rotate(180deg)}.sidebar .li.submenuLi .submenuBtn{right:0}.sidebar .li.submenuLi .ul .li{padding:14px 0px 0px 0px}.sidebar .li.submenuLi .ul .li a{color:rgba(0,0,0,.5)}.sidebar .li.dropDownMenuLi.active .ul.dropDownMenuUl{display:block}.sidebar .li.dropDownMenuLi.active button.dropdownBtn{transform:rotate(180deg)}.sidebar .li a{font-size:14px;font-family:"Lato Bold",sans-serif;font-weight:700;text-align:left;color:#424242;width:240px;display:block}.sidebar .li a::before{content:attr(data-text)}.sidebar .li a.newTag.recommderAnchor span{left:92px}.sidebar .li a.newTag span{width:35px;height:15px;position:absolute;top:.5px;left:auto}.sidebar .li button{width:24px;height:24px;display:inline-block;background-color:rgba(0,0,0,0);border:0;position:absolute;top:12px;right:16px;transform:rotate(0deg)}@media only screen and (min-width: 1200px){.menuOverlay{display:none}body.fixedHeader header .searchWrapper{position:fixed;top:21px;z-index:3}body.fixedHeader header .headerMainWrapper{position:fixed;top:0;left:0;right:0;width:100%;background-color:#fff;z-index:3}header{min-height:164.16px;position:relative}header .searchCloseIcon{width:31px;height:31px}header.logoMiddle a.logo{width:auto;text-align:center}header.logoMiddle a.logo img{margin-left:0px}header.logoMiddle .logoDateWrapper{width:auto}header .headerMainWrapper{min-height:auto}header.withoutSearch .headerMainWrapper{min-height:auto}header .afterSignIn .dropdownWrapper{right:0;bottom:inherit;top:calc(100% + 5px);width:auto;left:inherit;display:block;padding:0}header #navbar{position:static;top:0}header .logoWrapper{position:relative}header .searchIcon{width:31px;height:31px}header .socialIcons{display:flex;align-items:center;font-size:16px;font-family:"Lato Bold",sans-serif;font-weight:700}header .socialIcons .d-flex{display:flex;gap:20px;padding-right:10px;margin-right:10px;border-right:solid 1px #dbdbdb}header .dropdownMenu.afterSignIn:hover .dropdownToggle .drop-icon{transform:translateY(-50%) rotate(180deg)}header .dropdownMenu:hover .dropdownWrapper{opacity:1;z-index:2;visibility:visible}header nav ul li a.dropdownToggle::before,header nav ul li a:not(.dropdownToggle)::before{height:5px}header nav ul.mainLi{display:block;overflow-x:inherit;border-bottom:0;padding-left:0px;margin-top:0}header nav ul.mainLi:hover a.active::before{display:none}header nav ul li a{padding:18px 7px;margin-right:0px}header nav ul li a.newTag span{top:3.5px}header nav .container{flex-direction:row}header .logoWrapper{padding:29px 0px}header .logoWrapper .logo img{width:171px}header .hamburgerMenuBtn{display:none}header .dropdownMenu:hover a.dropdownToggle:before{display:block}header .dropdownWrapper{border-radius:4px;box-shadow:0 4px 7px 1px rgba(0,0,0,.3);background-color:#fff;position:absolute;min-width:171px;padding:5px 0px;opacity:0;z-index:-1;visibility:hidden;transition:all ease .3s;top:calc(100% + 5px);width:auto;left:inherit;bottom:inherit}header .dropdownWrapper .heading{display:none}header .dropdownWrapper li a{padding:6px 10px 8px 10px}header .searchWrapper{position:absolute;top:22px;left:50%;transform:translateX(-50%);width:485px;min-width:250px;margin:5px 0px;height:55px;min-height:55px;z-index:3;padding:0px 20px}header .searchWrapper input{padding:0px 0px 0px 0px;width:calc(100% - 31px);font-size:14px;color:#002b4d}header .searchWrapper input::-webkit-input-placeholder{color:#002b4d}header .searchWrapper input:-ms-input-placeholder{color:#002b4d}header .searchWrapper input::placeholder{color:#002b4d}}.displayNone{display:none}.searchIconMob{color:#212121;font-size:14px;padding:0px 10px 0px 20px;text-decoration:none;position:relative;align-items:center;margin-right:10px;height:22px;display:inline-flex;cursor:pointer}@media only screen and (min-width: 1200px){.searchIconMob{border-right:solid 1px #dbdbdb}}.searchIconMob::after{content:"";width:20px;height:20px;position:absolute;top:50%;left:0;transform:translateY(-50%)}.searchIconMob::after img{width:100%;height:100%}header .searchWrapper{display:none}header .searchWrapper.show{display:flex}@media only screen and (min-width: 1200px){.searchIconMob{display:none}header .searchWrapper{display:flex}}.container.contentWrapper{margin-top:16px;padding:0px 0px}.rhSection{padding:0px 16px}@media only screen and (min-width: 1200px){.lhSection{width:calc(100% - 319px);min-width:calc(100% - 319px);margin-right:19px}.rhSection{width:300px;padding:0}.container{max-width:calc(100% - 40px);margin:0 auto}.row{display:flex}.container.contentWrapper{margin-top:30px;padding:0px 0px}}@media only screen and (min-width: 1360px){.container{max-width:1268px;margin:0 auto}}@media only screen and (min-width: 1440px){.container{max-width:1270px;margin:0 auto}}.breadcrumb{padding:0px 0px 13px 0px;list-style:none;font-size:14px;line-height:14px;color:hwb(0 44% 56%);white-space:nowrap;text-overflow:ellipsis;overflow:hidden}.breadcrumb a{color:#424242;text-decoration:none;display:inline-flex;align-items:center;position:relative;padding-right:18px;font-family:"Lato Bold",sans-serif;font-weight:700}.breadcrumb a:hover{color:hwb(0 44% 56%)}.breadcrumb a img{width:18px;height:18px;position:absolute;right:0;top:-1px}@media only screen and (min-width: 1200px){.breadcrumb{padding:0px 0px 20px 0px;font-size:14px;line-height:14px}.breadcrumb a{padding-right:24px}.breadcrumb a img{width:24px;height:24px;right:0;top:-4px}}.shareLinks{display:flex;gap:8px}.shareLinks .iconWrapper{width:48px;height:48px;min-width:48px;min-height:48px;display:flex;align-items:center;justify-content:center}.shareLinks .shareBoxWrapper{position:relative;z-index:2}.shareLinks .shareBoxWrapper.open .shareBox{display:flex}.shareLinks .shareBoxWrapper.open .shareIcon .open-effect{display:block}.shareLinks .shareBoxWrapper.open .shareIcon .not-open{display:none}.shareLinks .shareBoxWrapper .shareBox{border-radius:8px;background-color:#fff;position:absolute;right:0;top:calc(100% + 7px);z-index:1;display:none;flex-direction:column;padding:22px 0px 0px 0px;box-shadow:0 3px 10px 0 rgba(0,0,0,.2)}.shareLinks .shareBoxWrapper .shareBox:before{content:"Share via:";position:absolute;font-size:14px;font-family:"Lato Regular",sans-serif;font-weight:400;color:hwb(0 44% 56%);top:7px;left:10px}@media(min-width: 1200px){.shareLinks .shareBoxWrapper .shareBox:before{top:50%;transform:translateY(-50%);left:5px;font-size:14px}}.shareLinks .shareBoxWrapper .shareBoxInner{display:flex}@media(min-width: 1200px){.shareLinks .shareBoxWrapper .shareBoxInner{padding-left:65px}}.shareLinks .heartIcon,.shareLinks .bookmarkIcon,.shareLinks .shareIcon{width:34px;height:34px;margin:7px;display:block}.shareLinks .heartIcon img,.shareLinks .bookmarkIcon img,.shareLinks .shareIcon img{width:100%;height:100%}.shareLinks .fbIcon,.shareLinks .twIcon,.shareLinks .whatsAppIcon{width:26px;height:26px;margin:11px;display:block}.shareLinks .fbIcon img,.shareLinks .twIcon img,.shareLinks .whatsAppIcon img{width:100%;height:100%;pointer-events:none}.shareLinks .fbIcon .hover-effect,.shareLinks .twIcon .hover-effect,.shareLinks .whatsAppIcon .hover-effect{display:none}.shareLinks .fbIcon:hover .hover-effect,.shareLinks .twIcon:hover .hover-effect,.shareLinks .whatsAppIcon:hover .hover-effect{display:block}.shareLinks .fbIcon:hover .not-hover,.shareLinks .twIcon:hover .not-hover,.shareLinks .whatsAppIcon:hover .not-hover{display:none}.shareLinks .bookmarkIcon .open-effect{display:none}.shareLinks .bookmarkIcon .not-open{display:block}.shareLinks .bookmarkIcon.bookMarkUrl .open-effect{display:block}.shareLinks .bookmarkIcon.bookMarkUrl .not-open{display:none}.shareLinks .shareIcon .open-effect{display:none}.shareLinks .shareIcon .not-open{display:block}@media only screen and (min-width: 1200px){.shareLinks .fbIcon,.shareLinks .twIcon,.shareLinks .whatsAppIcon{width:34px;height:34px;background-size:100% 100%}.shareLinks .fbIcon img,.shareLinks .twIcon img,.shareLinks .whatsAppIcon img{width:100%;height:100%}.shareLinks .shareIconBtn{display:none}.shareLinks .shareBoxWrapper .shareBox{display:flex;box-shadow:none;position:relative;top:0;right:0;padding:0;flex-direction:row;align-items:center}}.helpBuy{position:fixed;right:22px;bottom:80px;width:60px;height:60px;z-index:2;display:none}.helpBuy .pointerMessInner{background-color:#001026;position:absolute;width:calc(100% - 2px);height:calc(100% - 2px);z-index:-1;left:1px;border-radius:10px}.helpBuy .pointerMessage{width:303px;height:60px;box-sizing:border-box;background-color:#001026;color:#fff;font-family:"Lato Regular",sans-serif;font-size:14px;font-style:normal;font-weight:400;line-height:22px;padding:0px 23px 0px 12px;display:flex;align-items:center;position:absolute;top:-76px;right:0px;background-image:linear-gradient(92deg, #00B1CD -20.21%, #B2DDFF 2.05%, #0591FF 26.06%, #B2DDFF 48.9%, #00B1CD 68.81%, #0591FF 85.8%);border-radius:10px;opacity:0;visibility:hidden;animation:showPointerMessage 2s forwards,bounce 2s ease forwards;animation-delay:8s,12s}.helpBuy .pointerMessage::after{content:"";display:block;width:0;height:0;border-left:6px solid rgba(0,0,0,0);border-right:6px solid rgba(0,0,0,0);border-top:6px solid #001026;position:absolute;right:28px;bottom:-4px}.helpBuy .pointerMessage::before{content:"";background-image:linear-gradient(92deg, #00B1CD -20.21%, #B2DDFF 2.05%, #0591FF 26.06%, #B2DDFF 48.9%, #00B1CD 68.81%, #0591FF 85.8%);clip-path:polygon(49% 0, 100% 100%, 0 100%);width:14px;height:7px;transform:rotate(180deg);position:absolute;right:26px;bottom:-6px}.helpBuy .pointerImg{position:relative;width:60px;height:60px;border-radius:50%;background:#fff;animation:pointerripple 2s ease 0s infinite normal}.helpBuy .pointerImg::after{content:"";background:linear-gradient(92deg, #00B1CD -20.21%, #B2DDFF 2.05%, #0591FF 26.06%, #B2DDFF 48.9%, #00B1CD 68.81%, #0591FF 85.8%);width:calc(100% + 3px);height:calc(100% + 3px);position:absolute;top:50%;left:50%;transform:translate(-50%, -50%);bottom:0;display:block;border-radius:50%;z-index:-1}.helpBuy .pointerImg img{position:absolute;top:50%;left:50%;transform:translate(-50%, -50%);max-width:100%;max-height:100%;padding:10px}.helpBuy .pointerCloseIcon{position:absolute;right:8px;top:8px;width:16px;height:16px;background-color:#d9d9d9;border-radius:50%;cursor:pointer}.helpBuy .pointerCloseIcon::before,.helpBuy .pointerCloseIcon::after{content:"";position:absolute;top:50%;left:50%;width:10px;height:1.5px;background-color:#09041d;border-radius:4px;transform:translate(-50%, -50%)}.helpBuy .pointerCloseIcon::before{transform:translate(-50%, -50%) rotate(45deg)}.helpBuy .pointerCloseIcon::after{transform:translate(-50%, -50%) rotate(-45deg)}@keyframes bounce{0%,20%,50%,80%,100%{transform:translateY(0)}40%{transform:translateY(-30px)}60%{transform:translateY(-15px)}}@keyframes pointerripple{0%{box-shadow:rgba(5,145,255,.6) 0px 0px 0px 0px}100%{box-shadow:rgba(5,145,255,0) 0px 0px 0px 10px}}@keyframes showPointerMessage{to{opacity:1;visibility:visible}}.articleSavedPage h1{color:#212121;font-size:19px;font-family:"Lato Black",sans-serif;font-weight:900;padding:0px 16px;margin-bottom:16px}.notFoundVisible{border-bottom:1px solid #e0e0e0;font-size:16px;color:#424242;font-family:"Lato Regular",sans-serif;font-weight:400;text-align:center;padding:0px 16px 20px 16px}.notFoundVisible .notFoundIcon{width:118px;margin:20px auto 16px auto}.notFoundVisible .notFoundIcon img{width:100%}.notFoundVisible strong{font-family:"Lato BOld",sans-serif;font-weight:700;display:inline-block;width:100%;margin-bottom:8px}.notFoundVisible p{max-width:80%;margin:0 auto;font-size:14px}.notFoundVisible p img{width:25px;height:25px;margin:0px 10px;vertical-align:middle}.notFoundVisible .backHome{width:161px;height:41px;min-width:161px;min-height:41px;padding:2px;display:inline-flex;align-items:center;justify-content:center;font-size:14px;color:#fff;font-weight:400;font-family:"Lato Regular",sans-serif;border-radius:4px;border:solid 1px #002b4d;background-color:#002b4d;margin-top:12px}.notFoundVisible .backHome:hover{background-image:linear-gradient(to bottom, #002b4d, rgba(0, 86, 144, 0.91))}.savedArticleSection{border-bottom:1px solid #e0e0e0;padding:0px 16px}.savedArticleSection article{padding-bottom:10px;margin-bottom:10px;border-bottom:1px solid #e0e0e0;display:inline-block;width:100%}.savedArticleSection article:last-of-type{border-bottom:0}.savedArticleSection article .imgWrapper{min-width:93px;width:93px;height:70px;min-height:70px;float:right;margin-right:0px;margin-left:10px;border:solid 1px #e0e0e0}.savedArticleSection article .title{font-size:14px;font-weight:700;font-family:"Lato Bold",sans-serif;color:#212121;margin-bottom:12px;display:block}.savedArticleSection article .shareLinks .iconWrapper{width:30px;height:30px;min-width:30px;min-height:30px}.savedArticleSection article .shareLinks .bookmarkIcon{width:26px;height:26px}@media only screen and (min-width: 1200px){.notFoundVisible{font-size:24px;padding:0px 16px 30px 16px}.notFoundVisible .notFoundIcon{width:135px;margin:15px auto 25px auto}.notFoundVisible .notFoundIcon img{width:100%}.notFoundVisible strong{margin-bottom:20px}.notFoundVisible .backHome{font-size:16px;margin-top:20px}.notFoundVisible p{max-width:85%;font-size:20px}.notFoundVisible p img{width:35px;height:35px}.articleSavedPage h1{font-size:26px;padding:0px 0px;margin-bottom:25px}.articleSavedPage .savedArticleSection{padding:0}.articleSavedPage .savedArticleSection article{padding-bottom:15px;margin-bottom:15px;display:flex}.articleSavedPage .savedArticleSection article .bottomAlign{display:flex;flex-direction:column;justify-content:space-between}.articleSavedPage .savedArticleSection article .imgWrapper{min-width:153px;width:153px;height:116px;min-height:116px;float:left;margin-right:10px;margin-left:0px}.articleSavedPage .savedArticleSection article .title{font-size:20px;margin-bottom:23px}.articleSavedPage .savedArticleSection article .iconWrapper{width:48px;height:48px;min-width:48px;min-height:48px}.articleSavedPage .savedArticleSection article .bookmarkIcon{width:34px;height:34px}}</style> <link rel="preload" href="/css/revamp/css/savedArticle.min.css?v=13.02.2025" as="style" onload="this.onload=null;this.rel='stylesheet'"> <noscript> <link rel="stylesheet" href="/css/revamp/css/savedArticle.min.css?v=13.02.2025" type="text/css"> </noscript> <!-- Google Tag Manager --> <script> if (isSlowNetwork) { window.onload = loadGtmJS(6000); } else { window.onload = loadGtmJS(4000); } </script> <!--google analytics api--> </head> <script> window.dataLayer = window.dataLayer || []; function getCookie(name) { let match = document.cookie.match(new RegExp('(^| )' + name + '=([^;]+)')); return match ? match[2] : null; } function htGTMGA4(){ (function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start': new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0], j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src= 'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f); })(window,document,'script','dataLayer','GTM-PFSKSLQ'); setFingerprintCookie(); } htGTMGA4(); async function setFingerprintCookie() { var htfpIDLocal = "NA"; var publisherIDLocal = "NA"; try { let fURL = 'https://www.hindustantimes.com/cdp/user/tc'; const controller = new AbortController(); const timeout = 3000; // Set timeout to abort request const timeoutId = setTimeout(() => { controller.abort(); }, timeout); try { const response = await fetch(fURL, { method: 'GET', credentials: 'include', // Include cookies in the request signal: controller.signal, // Attach the AbortController signal }); if (response.ok) { const dataFinger = await response.json(); htfpIDLocal = dataFinger._ht_fp || "NA"; publisherIDLocal = dataFinger.ppid || "NA"; } } catch (error) { console.error('Request error or timeout:', error); } finally { clearTimeout(timeoutId); // Clear the timeout after request completes console.log("finally going here::::SSSSSS"); } } catch (error) { console.error('Error in fetching fingerprint data:', error); } dataLayer.push({ 'event': 'custom_page_view', 'htfpID': htfpIDLocal ? htfpIDLocal : null, 'publisherID':publisherIDLocal ? publisherIDLocal : null, 'clientID': getCookie('_ht_clientid'), "page_type": 'bookmark page', "section": "bookmark" ,"product_status": "NA" ,"product_price": "NA" ,"product_release_date": "NA" ,"product_type": "mobiles" }); } //setFingerprintCookie(); </script> <script type="text/javascript"> function htAnalyticsScriptSnow(){ if(window.location.hostname.toString() == "stg1-tech.hindustantimes.com" || window.location.hostname.toString() == "stg-tech.hindustantimes.com" || window.location.hostname.toString() == "qa-tech.hindustantimes.com" || window.location.hostname.toString() == "localhost" || window.location.hostname.toString() == "preprod-tech.hindustantimes.com" ) { var configObject = { "appId": "tc", "collectorHost": "dap.dev.hindustantimes.com", "pageViewRequired": true, "pagePingRequired": false, "syncRequired": true, "userIdCookie": "_ht_clientid", "pltRequired": false, "existingImpressionCapture": false, "existingLinkClickCapture": false, "webEngageTokenRequired": false }; (function(p, l, o, w, i, k, n, g) { if (!p[i]) { p.GlobalSnowplowNamespace = p.GlobalSnowplowNamespace || []; p.GlobalSnowplowNamespace.push(i); p[i] = function() { (p[i].q = p[i].q || []).push(arguments); }; p[i].q = p[i].q || []; n = l.createElement(o); g = l.getElementsByTagName(o)[0]; n.async = 1; n.src = w; g.parentNode.insertBefore(n, g); n.onload = function() { window.dapTracker = new window.dapDataTracker(); dapTracker.init(k); }}else{window.dapTracker = new window.dapDataTracker();dapTracker.init(k);}}(window, document, 'script', "https://analytics.dev.htmedia.in/app/tracker.js", 'snowplow', configObject)); } else { var configObject = { "appId": "tc", "collectorHost": "dap.hindustantimes.com", "pageViewRequired": true, "pagePingRequired": false, "syncRequired": true, "userIdCookie": "_ht_clientid", "pltRequired": false, "existingImpressionCapture": false, "existingLinkClickCapture": false, "webEngageTokenRequired": false }; (function(p, l, o, w, i, k, n, g) { if (!p[i]) { p.GlobalSnowplowNamespace = p.GlobalSnowplowNamespace || []; p.GlobalSnowplowNamespace.push(i); p[i] = function() { (p[i].q = p[i].q || []).push(arguments); }; p[i].q = p[i].q || []; n = l.createElement(o); g = l.getElementsByTagName(o)[0]; n.async = 1; n.src = w; g.parentNode.insertBefore(n, g); n.onload = function() { window.dapTracker = new window.dapDataTracker(); dapTracker.init(k); }}else{window.dapTracker = new window.dapDataTracker();dapTracker.init(k);}}(window, document, 'script', "https://analytics.htmedia.in/analytics-js/tracker.js", 'snowplow', configObject)); } } let initialUrl = window.location.href; window.addEventListener("scroll", function (event) { let currUrl = window.location.href; if (currUrl !== initialUrl) { try { htAnalyticsScriptSnow(); }catch (error) { console.log(error); } initialUrl = currUrl; } }); </script><body data-tab=Mobiles> <div style="display:none" id="comscoreContainer"></div> <script> let comScorePath = window.location.href; var _comscore = _comscore || []; _comscore.push({ c1: "2", c2: "6035286", options: { enableFirstPartyCookie: true, bypassUserConsentRequirementFor1PCookie: true } }); if (typeof COMSCORE !== 'undefined' && COMSCORE.beacon && _comscore) { COMSCORE.beacon(_comscore); } else { let comScoreText = `https://sb.scorecardresearch.com/p?c1=2&c2=6035286&c4=` + comScorePath + `&c7=` + comScorePath; document.getElementById("comscoreContainer").innerHTML = `<img src=` + comScoreText + ` />`; } ( function() {var s = document.createElement("script"), el = document.getElementsByTagName("script")[0]; s.async = true; s.src = "https://sb.scorecardresearch.com/cs/6035286/beacon.js"; el.parentNode.insertBefore(s, el); })(); </script> <!-- Google Tag Manager (noscript) --> <noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-PFSKSLQ" height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript> <!-- End Google Tag Manager (noscript) --> <input type="hidden" id="bookmarkUrl" value="tech.hindustantimes.com"> <div class="mobileNone"> <div class="headerAds250"> <div data-adcode="/1055314/HT_TECH_Desk_Section_Header_Multisize" data-adsize="[[970, 250],[1290, 250],[970, 90],[728, 90],[980, 90],[980, 250],[980, 200]]" class="section-masthead" id="section-masthead-id"></div> </div> </div> <!--header start here--> <header class="withoutSearch"> <div class="headerMainWrapper"> <div class="logowrapperMain"> <div class="logoWrapper"> <div class="container headerWrapper"> <div class="logoDateWrapper"> <span class="hamburgerMenuBtn"> <img src="https://images.hindustantimes.com/tech/static/revamp/images/png/hamburgerMenu.png" width="24" height="24"/> </span> <a href="/" class="logo"> <picture> <source srcset="https://images.hindustantimes.com/tech/static/revamp/images/webp/HTTech-logoTransparent@3x.webp" type="image/webp"> <source srcset="https://images.hindustantimes.com/tech/static/revamp/images/png/Httech-logo-transparent.png" type="image/png"> <img src="https://images.hindustantimes.com/tech/static/revamp/images/png/Httech-logo-transparent.png" width="104" height="30"> </picture> </a> </div> <div> <div class="socialIcons"> <div class="d-flex"> <a href="https://whatsapp.com/channel/0029Va9iditJENxz27aoVF0k" title="WhatsApp channel" target="_blank" class="WtIcon" rel="noopener nofollow noreferrer"> <img class="not-hover" src="https://images.hindustantimes.com/tech/static/revamp/images/png/whatsapp.png" width="25" height="25" /> <img class="hover-effect" src="https://images.hindustantimes.com/tech/static/revamp/images/png/whatsapp-hover.png" width="25" height="25" /> </a> <a href="https://www.facebook.com/hindustantimestech" title="facebook" target="_blank" class="fbIcon" rel="noopener nofollow noreferrer"> <img class="not-hover" src="https://images.hindustantimes.com/tech/static/revamp/images/png/facebook.png" width="25" height="25" /> <img class="hover-effect" src="https://images.hindustantimes.com/tech/static/revamp/images/png/facebook-hover.png" width="25" height="25" /> </a> <a href="https://twitter.com/HTTech" title="twitter" target="_blank" class="twIcon" rel="noopener nofollow noreferrer"> <img class="not-hover" src="https://images.hindustantimes.com/tech/static/revamp/images/png/twitter.png" width="25" height="25" /> <img class="hover-effect" src="https://images.hindustantimes.com/tech/static/revamp/images/png/twitter-hover.png" width="25" height="25" /> </a> <a href="https://www.youtube.com/channel/UCUmhg3QldZiYoO9mKGpumBA" title="youtube" target="_blank" class="ytIcon" rel="noopener nofollow noreferrer"> <img class="not-hover" src="https://images.hindustantimes.com/tech/static/revamp/images/png/youtube.png" width="25" height="25" /> <img class="hover-effect" src="https://images.hindustantimes.com/tech/static/revamp/images/png/youtube-hover.png" width="25" height="25" /> </a> </div> <a onclick="sendGA4Events(this);window.open('/gadget-recommender/mobile#header','_self');" data-item-product-name="NA" data-item-product-id="NA" data-item-product-type="NA" data-item-brand-name="NA" data-item-event="cta_click" data-item-page-name="bookmark page" data-item-current-url="tech.hindustantimes.com/common/bookmark/article" data-item-widget-name="gadget recommender - header entry point" data-item-widget-element="NA" class="recommenderLink recommenderEntryGA" id="recommenderLink"><img src="https://images.hindustantimes.com/tech/static/revamp/images/png/blackHeart.png" width="28" height="28"></a> <span class="searchIconMob"><img src="https://images.hindustantimes.com/tech/static/revamp/images/png/blackSearch.png" width="28" height="28"/></span> <span id="afterSignIn" class="afterSignIn" onclick="javascript:window.open('https://accounts.hindustantimes.com/?ref=HTT', '_self');ga('send', 'event', 'Login Initiated', 'Home Login','Home_Tab_Login',{'dimension7': 'Story_Listing_Page'});myGlobalVariable = 'login';" title="Login"><img src="https://images.hindustantimes.com/tech/static/revamp/images/png/AccountImg.png" width="28" height="28"/></span> <div id="afterLogin" class="afterSignIn dropdownMenu"> </div> </div> </div> </div> </div> </div> <nav class="menuHeader"> <div class="container"> <ul class="mainLi"> <li><a href="/" title="Get to know more about Technology News from India and around the world." class="">HOME</a></li> <li><a href="/tech/news" title="Get to know more about News from India and around the world." class="" >NEWS</a> </li> <li class="dropdownMenu"> <div class="anchor-wr"> <a href="/mobile" title="Get to Know more about Mobile News from India and around the world." class="dropdownToggle " >MOBILE <img src="https://images.hindustantimes.com/tech/static/revamp/images/png/arrow-drop-down.png" class="drop-icon" width="20" height="20"/> </a> <span class="dropdownToggle mwebMenu"> </span> </div> <div class="dropdownWrapper"> <span class="heading"><a data-text="Mobile" href="/mobile" title="Get to Know more about mobile News from India and around the world." > </a><span class="closeIcon"><img src="https://images.hindustantimes.com/tech/static/revamp/images/png/header-search-close.png" width="24" height="24" /></span></span> <ul> <li> <a title="Get to Know more about Mobile News from India and around the world." href="/mobile/news" > Mobile News </a> </li> <li> <a title="Get to Know more about mobile reviews from India and around the world." href="/mobile/reviews" > mobile reviews </a> </li> <li> <a title="Get to Know more about from India and around the world." href="/mobile-finder" > Mobile Finder </a> </li> <li> <a title="Get to Know more about from India and around the world." href="/gadget-recommender/mobile" > Mobile Recommender </a> </li> <li> <a title="Get to Know more about from India and around the world." href="/compare-mobile-phones" > Mobile Compare </a> </li> </ul> </div> </li> <li class="dropdownMenu"> <div class="anchor-wr"> <a href="/laptops-pc" title="Get to Know more about Laptops PC News from India and around the world." class="dropdownToggle " >LAPTOPS PC <img src="https://images.hindustantimes.com/tech/static/revamp/images/png/arrow-drop-down.png" class="drop-icon" width="20" height="20"/> </a> <span class="dropdownToggle mwebMenu"> </span> </div> <div class="dropdownWrapper"> <span class="heading"><a data-text="Laptops PC" href="/laptops-pc" title="Get to Know more about Laptops PC News from India and around the world."> </a><span class="closeIcon"><img src="https://images.hindustantimes.com/tech/static/revamp/images/png/header-search-close.png" width="24" height="24" ></span></span> <ul> <li> <a title="Get to Know more about Laptops/PC news from India and around the world." href="/laptops-pc/news" > Laptops/PC news </a> </li> <li> <a title="Get to Know more about Laptops/PC reviews from India and around the world." href="/laptops-pc/reviews" > Laptops/PC reviews </a> </li> <li> <a title="Find all the latest and most popular Laptop Finder with a price list" href="/laptop-finder" >Laptop Finder</a></li> <li> <a title="Find all the latest and most popular Laptop Finder with a price list" href="/gadget-recommender/laptop" >Laptop Recommender</a></li> <li><a title="Compare the latest laptops prices, specifications, features & performance" href="/compare-laptops" >Laptop Comparison</a></li> </ul> </div> </li> <li class="dropdownMenu"> <div class="anchor-wr"> <a href="/gaming" title="Get to Know more about Gaming News from India and around the world." class="dropdownToggle " >GAMING <img src="https://images.hindustantimes.com/tech/static/revamp/images/png/arrow-drop-down.png" class="drop-icon" width="20" height="20"/> </a> <span class="dropdownToggle mwebMenu"> </span> </div> <div class="dropdownWrapper"> <span class="heading"><a data-text="Gaming" href="/gaming" title="Get to Know more about gaming News from India and around the world." > </a><span class="closeIcon"><img src="https://images.hindustantimes.com/tech/static/revamp/images/png/header-search-close.png" width="24" height="24" /></span></span> <ul> <li> <a title="Get to Know more about Gaming news from India and around the world." href="/gaming/news" > Gaming news </a> </li> <li> <a title="Get to Know more about Gaming Reviews from India and around the world." href="/gaming/reviews" > Gaming Reviews </a> </li> </ul> </div> </li> <li class="dropdownMenu"> <a href="javascript:void(0)" class="dropdownToggle ">GADGETS <img src="https://images.hindustantimes.com/tech/static/revamp/images/png/arrow-drop-down.png" class="drop-icon" loading="lazy" width="20" height="20"/></a> <div class="dropdownWrapper"> <span class="heading"><a data-text="Gadgets"></a> <span class="closeIcon"><img src="https://images.hindustantimes.com/tech/static/revamp/images/png/header-search-close.png" width="24" height="24" /></span></span> <ul> <li> <a title="Find all the latest and most popular Mobile Finder with a price list" href="/mobile-finder" >Mobile Finder</a></li> <li> <a title="Find all the latest and most popular Laptop Finder with a price list" href="/laptop-finder" >Laptop Finder</a></li> <li> <a title="Find all the latest and most popular Tablet Finder with a price list" href="/tablet-finder" >Tablet Finder</a></li> </ul> </div> </li> <li class="dropdownMenu"> <div class="anchor-wr"> <span class="dropdownToggle mwebMenu"> </span> <a href="/wearables" class="dropdownToggle newTag ">WEARABLES <img src="https://images.hindustantimes.com/tech/static/revamp/images/png/arrow-drop-down.png" class="drop-icon" width="20" height="20"/></a> </div> <div class="dropdownWrapper"> <span class="heading"><a data-text="Wearables"></a> <span class="closeIcon"><img src="https://images.hindustantimes.com/tech/static/revamp/images/png/header-search-close.png" width="24" height="24" loading="lazy"/></span></span> <ul> <li> <a title="Get to know more about Wearables News from India and around the world" href="/wearables/news" >Wearables News</a></li> <li> <a title="Get to know more about Wearables Reviews from India and around the world" href="/wearables/reviews" >Wearables Reviews</a></li> <li> <a title="Find all the latest and most popular Smart watches with a price list" href="/smart-watches" >Smart Watches</a></li> <li> <a title="Find all the latest and most popular Fitness Bands with a price list" href="/fitness-bands">Fitness Bands</a></li> </ul> </div> </li> <li><a href="/how-to" title="Get to Know more about how to News from India and around the world." >HOW TO</a> </li> <li class="dropdownMenu"> <a href="javascript:void(0)" class="dropdownToggle ">COMPARE <img src="https://images.hindustantimes.com/tech/static/revamp/images/png/arrow-drop-down.png" class="drop-icon" width="20" height="20"/></a> <div class="dropdownWrapper"> <span class="heading"><a data-text="Compare"></a><span class="closeIcon"><img src="https://images.hindustantimes.com/tech/static/revamp/images/png/header-search-close.png" width="24" height="24" /></span></span> <ul> <li><a title="Compare the Latest mobiles prices, specifications, features & performance" href="/compare-mobile-phones">Mobile Comparison</a></li> <li><a title="Compare the latest laptops prices, specifications, features & performance" href="/compare-laptops" >Laptop Comparison</a></li> <li><a title="Compare the latest tablets prices, specifications, features & performance" href="/compare-tablets" >Tablet Comparison</a></li> </ul> </div> </li> <li><a href="/photos" title="Get to Know more about Photos News from India and around the world." class="" >PHOTOS</a> </li> <li><a href="/videos" title="Get to Know more about Videos News from India and around the world." class="" >VIDEOS</a> </li> <li><a href="/web-stories" title="Get to Know more about Web Stories from India and around the world." class="" >WEB STORIES</a></li> <li class="dropdownMenu "> <a href="javascript:void(0)" title="Get to know more about More News from India and around the world." class="dropdownToggle ">MORE <img src="https://images.hindustantimes.com/tech/static/revamp/images/png/arrow-drop-down.png" class="drop-icon" width="20" height="20"/></a> <div class="dropdownWrapper"> <span class="heading"><a data-text="More"></a> <span class="closeIcon"><img src="https://images.hindustantimes.com/tech/static/revamp/images/png/header-search-close.png" width="24" height="24" /></span></span> <ul> <li><a href="/events/samsung-unpacked" title="Get to Know more about Samsung event News from India and around the world." >Samsung Event</a> </li> <li><a href="/events/apple-september-event" title="Get to Know more about Apple event News from India and around the world."> Apple Event </a></li> <li><a href="/articles-for-you" title="Get to Know more about For You News from India and around the world." ><span></span>For You</a></li> <li><a href="/home-appliances" title="Get to know more about Home Appliances News from India and around the world." >Home Appliances</a></li> <li><a href="/tv" title="Get to know more about TV News from India and around the world." >TV</a> </li> <li><a href="/brand-stories" title="Get to know more about Brand stories News from India and around the world." >brand stories</a> </li> <li> <a title="Find all the latest and most popular Mobile Finder with a price list" href="/gadget-recommender/mobile">Mobile Recommender</a></li> <li> <a title="Find all the latest and most popular Laptop Finder with a price list" href="/gadget-recommender/laptop">Laptop Recommender</a></li> <li> <a title="Find all the latest and most popular Tablet Finder with a price list" href="/gadget-recommender/tablet">Tablet Recommender</a></li> </ul> </div> </li> </ul> <div class="searchWrapper" id="nav__search-box"> <input type="text" id="searchParameter" value="" placeholder="Search for news, mobiles, laptops etc.." /> <button type="button" class="searchCloseIcon"> <img src="https://images.hindustantimes.com/tech/static/revamp/images/png/header-search-close.png" width="24" height="24" /> </button> <button type="submit" id="searchIcon" onclick="basicSearch('1','searchParameter')" class="searchIcon"> <img src="https://images.hindustantimes.com/tech/static/revamp/images/png/header-search.png" width="24" height="24" /> </button> </div> </div> </nav> </div> </header> <!--header end here--> <script> var pageNameGA = "bookmark page"; function updateUniqueInfoForLoggedUser(userId){ var xhttp; xhttp = new XMLHttpRequest(); xhttp.onreadystatechange = function () { if (this.readyState == 4 && this.status == 200) { var userdata= JSON.parse(xhttp.responseText); if(userdata.data.data) { webengage.user.setAttribute('we_email', userdata.data.data.email); } } }; xhttp.open("GET", "/get-user-info/"+userId, true); xhttp.setRequestHeader("Authorization",userId); xhttp.send(); } function getCookieValue(name) { var cookieArr = document.cookie.split(";"); var appendStr=""; for(var i = 0; i < cookieArr.length; i++) { var cookiePair = cookieArr[i].split("="); if(name == cookiePair[0].trim() && name != "token") { return cookiePair[1]; } if(name == cookiePair[0].trim() && name == "token") { cookiePair.forEach((element) => { if(element.trim().length == 0){ appendStr+="="; } }); return cookiePair[1]+appendStr; } } return null; } function setLoggedInUserForWebEngage(){ var userId = getCookieValue("_ht_fp_dev"); if(webengage.util.getWebengageCookie() != null && typeof webengage.util.getWebengageCookie().cuid == "undefined" && userId != null){ var name = getCookieValue("name"); webengage.user.login(userId); webengage.user.setAttribute('we_first_name', name); var token = getCookieValue("token"); var email = getCookie('email'); if(email!=null && token!=="") { webengage.user.setAttribute('we_email', email); }else if(token != null && token !== "" && !token.includes('amp-')){ updateUniqueInfoForLoggedUser(token); } } } function setAnonymousOrLoggedInUserForWebEngage(){ try { if(document.cookie.includes("token")) {/*It mean user is logged*/ setLoggedInUserForWebEngage(); } } catch (err) { console.log("something went wrong",err.message); } } if(!document.cookie.includes("token")) { var script=document.createElement('script'); script.src="https://accounts.google.com/gsi/client"; script.defer=true; document.body.appendChild(script); } function googleOneTap() { window.google && window.google.accounts.id.initialize({ client_id: '358408018637-bqa2h10dlm1cnhp0sc2k1svq833gm5es.apps.googleusercontent.com', callback: handleResponse }); google.accounts.id.prompt(); } function handleResponse(res) { $.ajax({ type: "GET", url: "/onetapsignup", data: res.credential, success: function(result) { console.log("success result"); var emailId=parseJWTForEmail(res.credential); ga('send', 'event', 'Widget_Sign_Up_Success', "Google_One_Tap", window.location.href,{'dimension7':pageNameGA,'dimension9':emailId}); window.location.reload(); }, error: function(err) { console.log("Something went wrong Please try again later "); } }); } setTimeout(function () { if(!document.cookie.includes("token")) googleOneTap(); }, 8000); function parseJWTForEmail(token){ console.log("parseJWTForEmail"); var base64Url = token.split('.')[1]; var base64 = base64Url.replace(/-/g, '+').replace(/_/g, '/'); var jsonPayload = decodeURIComponent(atob(base64).split('').map(function(c) { return '%' + ('00' + c.charCodeAt(0).toString(16)).slice(-2); }).join('')); return JSON.parse(jsonPayload).email; } function logoutUserForOneTap() { console.log("logoutUserForOneTap"); document.cookie = 'token=;expires=Thu, 01 Jan 1970 00:00:01 GMT;domain='+window.location.host; document.cookie = 'name=;expires=Thu, 01 Jan 1970 00:00:01 GMT;domain='+window.location.host; document.cookie = '_ht_clientid=;expires=Thu, 01 Jan 1970 00:00:01 GMT;domain='+window.location.host; location.href ="https://accounts.hindustantimes.com/logout.html" ; webengage.user.logout(); return false; } setTimeout(function(){ setAnonymousOrLoggedInUserForWebEngage(); }, 6000); function setCookie(name, value, days) { var expires = ""; if (days) { var date = new Date(); date.setTime(date.getTime() + (days * 24 * 60 * 60 * 1000)); expires = "; expires=" + date.toGMTString(); } var domainName = window.location.hostname; document.cookie = name + "=" + (value || "") + expires + "; path=/; domain=" + domainName + ";"; } </script> <div id="sidebar" class="sidebar"> </div><div class="container contentWrapper"> <div class="row articleSavedPage"> <div class="lhSection"> <div class="breadcrumb"> <a href="/">Latest Tech News <img src="https://images.hindustantimes.com/tech/static/revamp/images/png/breadcumb-icon.png" width="20" height="20" /></a> Saved Articles </div> <div class="notFoundVisible"> <div class="notFoundIcon"><img src="https://images.hindustantimes.com/tech/static/revamp/images/png/bookmarkNotFound.png" width="118" height="115" loading="lazy" /></div> <h1> You have not bookmarked anything yet</h1> <p> Create your own collection by clicking on<img src="https://images.hindustantimes.com/tech/static/revamp/images/png/Bookmark.png" width="25" height="25" loading="lazy">Icon to bookmark articles that you’d like to browse later.</p> <a href="/" class="backHome">Back to Home</a> </div> <!-- Pagination --> <!--0 totalpages </br> 1 pageno </br> 1 pagmin </br> 1 pagemax </br> 2 pagebef--> <section class="topGadgetsWrapper allProductsAvailable"><div class="sectionTitle inMiddle"><h2 class="heading">Top Gadgets</h2> <div class="boxTabs"><span class="active" data-current="Mobiles">Mobiles</span><span data-current="Tablets">Tablets</span><span data-current="Laptops">Laptops</span><span data-current="SmartWatches">Smart Watches</span><span data-current="FitnessBands">Fitness Bands</span></div></div> <div class="tabLinksWrapper"><a href="javascript:void(0);" class="active" data-current="popular">Popular</a><a href="javascript:void(0);" data-current="latest">Latest</a><a href="javascript:void(0);" data-current="upcoming">Upcoming</a></div> <div id="topGadgets"> <div class="scrollArea topGadgetsBoxWrapper" id="Mobiles" > <span class="leftArrow" style="display: none;"><img src="https://images.hindustantimes.com/tech/static/revamp/images/png/slider-arrow-right-white-bg.png" width="48" height="48" loading="lazy"/></span> <span class="rightArrow"><img src="https://images.hindustantimes.com/tech/static/revamp/images/png/slider-arrow-right-white-bg.png" width="48" height="48" loading="lazy"/></span> <div id="Mobiles_popular" class="topGadgetsBox" > <div class="sliderWrapper scrollView"> <div class="sliderBox" wposition="1" wtype="horizontal-widget" data-widget="Widget-Top-Mobiles-popular" category="Mobiles" productn="Vivo X200" metaurl="/vivo-x200-price-in-india-P999940268" affiliate="null" data-price="65999" pagetype="savedArticle_Page"> <div class="parentWrapper"> <div class="imgWrapper"> <span class="fourRatioThree"></span> <img data-src="https://images.hindustantimes.com/tech/htmobile4/P40268/heroimage/165353-v5-vivo-x200-mobile-phone-large-1.jpg" class="lazyload" /> </div> <a class="title" href="/vivo-x200-price-in-india-P999940268" data-item-widget-name="top gadgets" data-item-product-name="vivo x200" data-item-target-url="tech.hindustantimes.com/vivo-x200-price-in-india-P999940268" data-item-product-position="1" data-item-tracking-id="NA" data-item-marketplace="NA" data-item-product-type="Mobiles" data-item-tab-name="popular" data-item-event="product_card_click" data-item-page-name="bookmark page" data-item-widget-element="title" data-item-product-id="NA" class="parentWrapper" onclick="sendGA4Events(this);" ><h3 class="title"> Vivo X200</h3></a> <div class="description"> Natural Green, 12 GB / 16 GB RAM, 256 GB / 512 GB Storage</div> </div> <div class="sliderFooter"> <div class="priceText"> ₹ 65,999</div> <div class="buyNow" data-item-widget-name="top gadgets" data-item-product-name="vivo x200" data-item-target-url="tech.hindustantimes.com/vivo-x200-price-in-india-P999940268" data-item-product-position="1" data-item-tracking-id="NA" data-item-marketplace="NA" data-item-product-type="Mobiles" data-item-tab-name="popular" data-item-product-id="NA" data-item-event="product_card_click" data-item-page-name="bookmark page" data-item-widget-element="check details" onclick="sendGA4Events(this);window.open('/vivo-x200-price-in-india-P999940268', '_self');">Check Details</div> </div> </div> <div class="sliderBox" wposition="1" wtype="horizontal-widget" data-widget="Widget-Top-Mobiles-popular" category="Mobiles" productn="Xiaomi 14 Ultra" metaurl="/xiaomi-14-ultra-price-in-india-P999938904" affiliate="null" data-price="99999" pagetype="savedArticle_Page"> <div class="parentWrapper"> <div class="imgWrapper"> <span class="fourRatioThree"></span> <img data-src="https://images.hindustantimes.com/tech/htmobile4/P38904/heroimage/155816-v4-xiaomi-14-ultra-mobile-phone-large-1.jpg" class="lazyload" /> </div> <a class="title" href="/xiaomi-14-ultra-price-in-india-P999938904" data-item-widget-name="top gadgets" data-item-product-name="xiaomi 14 ultra" data-item-target-url="tech.hindustantimes.com/xiaomi-14-ultra-price-in-india-P999938904" data-item-product-position="2" data-item-tracking-id="NA" data-item-marketplace="NA" data-item-product-type="Mobiles" data-item-tab-name="popular" data-item-event="product_card_click" data-item-page-name="bookmark page" data-item-widget-element="title" data-item-product-id="NA" class="parentWrapper" onclick="sendGA4Events(this);" ><h3 class="title"> Xiaomi 14 Ultra</h3></a> <div class="description"> Black, 16 GB RAM, 512 GB Storage</div> </div> <div class="sliderFooter"> <div class="priceText"> ₹ 99,999</div> <div class="buyNow" data-item-widget-name="top gadgets" data-item-product-name="xiaomi 14 ultra" data-item-target-url="tech.hindustantimes.com/xiaomi-14-ultra-price-in-india-P999938904" data-item-product-position="2" data-item-tracking-id="NA" data-item-marketplace="NA" data-item-product-type="Mobiles" data-item-tab-name="popular" data-item-product-id="NA" data-item-event="product_card_click" data-item-page-name="bookmark page" data-item-widget-element="check details" onclick="sendGA4Events(this);window.open('/xiaomi-14-ultra-price-in-india-P999938904', '_self');">Check Details</div> </div> </div> <div class="sliderBox" wposition="1" wtype="horizontal-widget" data-widget="Widget-Top-Mobiles-popular" category="Mobiles" productn="OnePlus 13" metaurl="/oneplus-13-price-in-india-P999938650" affiliate="null" data-price="69998" pagetype="savedArticle_Page"> <div class="parentWrapper"> <div class="imgWrapper"> <span class="fourRatioThree"></span> <img data-src="https://images.hindustantimes.com/tech/htmobile4/P38650/heroimage/154779-v10-oneplus-13-mobile-phone-large-1.jpg" class="lazyload" /> </div> <a class="title" href="/oneplus-13-price-in-india-P999938650" data-item-widget-name="top gadgets" data-item-product-name="oneplus 13" data-item-target-url="tech.hindustantimes.com/oneplus-13-price-in-india-P999938650" data-item-product-position="3" data-item-tracking-id="NA" data-item-marketplace="NA" data-item-product-type="Mobiles" data-item-tab-name="popular" data-item-event="product_card_click" data-item-page-name="bookmark page" data-item-widget-element="title" data-item-product-id="NA" class="parentWrapper" onclick="sendGA4Events(this);" ><h3 class="title"> OnePlus 13</h3></a> <div class="description"> Midnight Ocean, 12 GB / 16 GB / 24 GB RAM, 256 GB / 512 GB / 1 TB Storage</div> </div> <div class="sliderFooter"> <div class="priceText"> ₹ 69,998</div> <div class="buyNow" data-item-widget-name="top gadgets" data-item-product-name="oneplus 13" data-item-target-url="tech.hindustantimes.com/oneplus-13-price-in-india-P999938650" data-item-product-position="3" data-item-tracking-id="NA" data-item-marketplace="NA" data-item-product-type="Mobiles" data-item-tab-name="popular" data-item-product-id="NA" data-item-event="product_card_click" data-item-page-name="bookmark page" data-item-widget-element="check details" onclick="sendGA4Events(this);window.open('/oneplus-13-price-in-india-P999938650', '_self');">Check Details</div> </div> </div> <div class="sliderBox" wposition="1" wtype="horizontal-widget" data-widget="Widget-Top-Mobiles-popular" category="Mobiles" productn="Samsung Galaxy S25" metaurl="/samsung-galaxy-s25-price-in-india-P999938196" affiliate="null" data-price="80999" pagetype="savedArticle_Page"> <div class="parentWrapper"> <div class="imgWrapper"> <span class="fourRatioThree"></span> <img data-src="https://images.hindustantimes.com/tech/htmobile4/P38196/heroimage/152738-v5-samsung-galaxy-s25-mobile-phone-large-1.jpg" class="lazyload" /> </div> <a class="title" href="/samsung-galaxy-s25-price-in-india-P999938196" data-item-widget-name="top gadgets" data-item-product-name="samsung galaxy s25" data-item-target-url="tech.hindustantimes.com/samsung-galaxy-s25-price-in-india-P999938196" data-item-product-position="4" data-item-tracking-id="NA" data-item-marketplace="NA" data-item-product-type="Mobiles" data-item-tab-name="popular" data-item-event="product_card_click" data-item-page-name="bookmark page" data-item-widget-element="title" data-item-product-id="NA" class="parentWrapper" onclick="sendGA4Events(this);" ><h3 class="title"> Samsung Galaxy S25</h3></a> <div class="description"> Icyblue, 12 GB RAM, 256 GB / 512 GB Storage</div> </div> <div class="sliderFooter"> <div class="priceText"> ₹ 80,999</div> <div class="buyNow" data-item-widget-name="top gadgets" data-item-product-name="samsung galaxy s25" data-item-target-url="tech.hindustantimes.com/samsung-galaxy-s25-price-in-india-P999938196" data-item-product-position="4" data-item-tracking-id="NA" data-item-marketplace="NA" data-item-product-type="Mobiles" data-item-tab-name="popular" data-item-product-id="NA" data-item-event="product_card_click" data-item-page-name="bookmark page" data-item-widget-element="check details" onclick="sendGA4Events(this);window.open('/samsung-galaxy-s25-price-in-india-P999938196', '_self');">Check Details</div> </div> </div> </div> <a href="/mobile-finder/popular-phones" class="viewAllBtn" data-before='View'> Popular Mobile Phones <img src="/img/revamp/images/view-all-icon.png" width="13" height="12" loading="lazy" /> </a> </div> <div id="Mobiles_latest" class="topGadgetsBox" > <div class="sliderWrapper scrollView"> <div class="sliderBox" wposition="1" wtype="horizontal-widget" data-widget="Widget-Top-Mobiles-latest" category="Mobiles" productn="Samsung Galaxy S25" metaurl="/samsung-galaxy-s25-price-in-india-P999938196" affiliate="null" data-price="80999" pagetype="savedArticle_Page"> <div class="parentWrapper"> <div class="imgWrapper"> <span class="fourRatioThree"></span> <img data-src="https://images.hindustantimes.com/tech/htmobile4/P38196/heroimage/152738-v5-samsung-galaxy-s25-mobile-phone-large-1.jpg" class="lazyload" /> </div> <a class="title" href="/samsung-galaxy-s25-price-in-india-P999938196" data-item-widget-name="top gadgets" data-item-product-name="samsung galaxy s25" data-item-target-url="tech.hindustantimes.com/samsung-galaxy-s25-price-in-india-P999938196" data-item-product-position="1" data-item-tracking-id="NA" data-item-marketplace="NA" data-item-product-type="Mobiles" data-item-tab-name="latest" data-item-event="product_card_click" data-item-page-name="bookmark page" data-item-widget-element="title" data-item-product-id="NA" class="parentWrapper" onclick="sendGA4Events(this);" ><h3 class="title"> Samsung Galaxy S25</h3></a> <div class="description"> Icyblue, 12 GB RAM, 256 GB / 512 GB Storage</div> </div> <div class="sliderFooter"> <div class="priceText"> ₹ 80,999</div> <div class="buyNow" data-item-widget-name="top gadgets" data-item-product-name="samsung galaxy s25" data-item-target-url="tech.hindustantimes.com/samsung-galaxy-s25-price-in-india-P999938196" data-item-product-position="1" data-item-tracking-id="NA" data-item-marketplace="NA" data-item-product-type="Mobiles" data-item-tab-name="latest" data-item-product-id="NA" data-item-event="product_card_click" data-item-page-name="bookmark page" data-item-widget-element="check details" onclick="sendGA4Events(this);window.open('/samsung-galaxy-s25-price-in-india-P999938196', '_self');">Check Details</div> </div> </div> <div class="sliderBox" wposition="1" wtype="horizontal-widget" data-widget="Widget-Top-Mobiles-latest" category="Mobiles" productn="Realme 14 Pro Plus" metaurl="/realme-14-pro-plus-price-in-india-P999940526" affiliate="null" data-price="27498" pagetype="savedArticle_Page"> <div class="parentWrapper"> <div class="imgWrapper"> <span class="fourRatioThree"></span> <img data-src="https://images.hindustantimes.com/tech/htmobile4/P40526/heroimage/166629-v9-realme-14-pro-plus-mobile-phone-large-1.jpg" class="lazyload" /> </div> <a class="title" href="/realme-14-pro-plus-price-in-india-P999940526" data-item-widget-name="top gadgets" data-item-product-name="realme 14 pro plus" data-item-target-url="tech.hindustantimes.com/realme-14-pro-plus-price-in-india-P999940526" data-item-product-position="2" data-item-tracking-id="NA" data-item-marketplace="NA" data-item-product-type="Mobiles" data-item-tab-name="latest" data-item-event="product_card_click" data-item-page-name="bookmark page" data-item-widget-element="title" data-item-product-id="NA" class="parentWrapper" onclick="sendGA4Events(this);" ><h3 class="title"> Realme 14 Pro Plus</h3></a> <div class="description"> Pearl White, 8 GB / 12 GB RAM, 128 GB / 256 GB Storage</div> </div> <div class="sliderFooter"> <div class="priceText"> ₹ 27,498</div> <div class="buyNow" data-item-widget-name="top gadgets" data-item-product-name="realme 14 pro plus" data-item-target-url="tech.hindustantimes.com/realme-14-pro-plus-price-in-india-P999940526" data-item-product-position="2" data-item-tracking-id="NA" data-item-marketplace="NA" data-item-product-type="Mobiles" data-item-tab-name="latest" data-item-product-id="NA" data-item-event="product_card_click" data-item-page-name="bookmark page" data-item-widget-element="check details" onclick="sendGA4Events(this);window.open('/realme-14-pro-plus-price-in-india-P999940526', '_self');">Check Details</div> </div> </div> <div class="sliderBox" wposition="1" wtype="horizontal-widget" data-widget="Widget-Top-Mobiles-latest" category="Mobiles" productn="OnePlus 13R" metaurl="/oneplus-13r-price-in-india-P999938668" affiliate="null" data-price="42998" pagetype="savedArticle_Page"> <div class="parentWrapper"> <div class="imgWrapper"> <span class="fourRatioThree"></span> <img data-src="https://images.hindustantimes.com/tech/htmobile4/P38668/heroimage/154834-v7-oneplus-13r-mobile-phone-large-1.jpg" class="lazyload" /> </div> <a class="title" href="/oneplus-13r-price-in-india-P999938668" data-item-widget-name="top gadgets" data-item-product-name="oneplus 13r" data-item-target-url="tech.hindustantimes.com/oneplus-13r-price-in-india-P999938668" data-item-product-position="3" data-item-tracking-id="NA" data-item-marketplace="NA" data-item-product-type="Mobiles" data-item-tab-name="latest" data-item-event="product_card_click" data-item-page-name="bookmark page" data-item-widget-element="title" data-item-product-id="NA" class="parentWrapper" onclick="sendGA4Events(this);" ><h3 class="title"> OnePlus 13R</h3></a> <div class="description"> Astral Trail, 12 GB / 16 GB RAM, 256 GB / 512 GB Storage</div> </div> <div class="sliderFooter"> <div class="priceText"> ₹ 42,998</div> <div class="buyNow" data-item-widget-name="top gadgets" data-item-product-name="oneplus 13r" data-item-target-url="tech.hindustantimes.com/oneplus-13r-price-in-india-P999938668" data-item-product-position="3" data-item-tracking-id="NA" data-item-marketplace="NA" data-item-product-type="Mobiles" data-item-tab-name="latest" data-item-product-id="NA" data-item-event="product_card_click" data-item-page-name="bookmark page" data-item-widget-element="check details" onclick="sendGA4Events(this);window.open('/oneplus-13r-price-in-india-P999938668', '_self');">Check Details</div> </div> </div> <div class="sliderBox" wposition="1" wtype="horizontal-widget" data-widget="Widget-Top-Mobiles-latest" category="Mobiles" productn="OnePlus 13" metaurl="/oneplus-13-price-in-india-P999938650" affiliate="null" data-price="69998" pagetype="savedArticle_Page"> <div class="parentWrapper"> <div class="imgWrapper"> <span class="fourRatioThree"></span> <img data-src="https://images.hindustantimes.com/tech/htmobile4/P38650/heroimage/154779-v10-oneplus-13-mobile-phone-large-1.jpg" class="lazyload" /> </div> <a class="title" href="/oneplus-13-price-in-india-P999938650" data-item-widget-name="top gadgets" data-item-product-name="oneplus 13" data-item-target-url="tech.hindustantimes.com/oneplus-13-price-in-india-P999938650" data-item-product-position="4" data-item-tracking-id="NA" data-item-marketplace="NA" data-item-product-type="Mobiles" data-item-tab-name="latest" data-item-event="product_card_click" data-item-page-name="bookmark page" data-item-widget-element="title" data-item-product-id="NA" class="parentWrapper" onclick="sendGA4Events(this);" ><h3 class="title"> OnePlus 13</h3></a> <div class="description"> Midnight Ocean, 12 GB / 16 GB / 24 GB RAM, 256 GB / 512 GB / 1 TB Storage</div> </div> <div class="sliderFooter"> <div class="priceText"> ₹ 69,998</div> <div class="buyNow" data-item-widget-name="top gadgets" data-item-product-name="oneplus 13" data-item-target-url="tech.hindustantimes.com/oneplus-13-price-in-india-P999938650" data-item-product-position="4" data-item-tracking-id="NA" data-item-marketplace="NA" data-item-product-type="Mobiles" data-item-tab-name="latest" data-item-product-id="NA" data-item-event="product_card_click" data-item-page-name="bookmark page" data-item-widget-element="check details" onclick="sendGA4Events(this);window.open('/oneplus-13-price-in-india-P999938650', '_self');">Check Details</div> </div> </div> </div> <a href="/mobile-finder/latest-mobile-phones" class="viewAllBtn" data-before='View'> Latest Mobile Phones <img src="/img/revamp/images/view-all-icon.png" width="13" height="12" loading="lazy" /> </a> </div> <div id="Mobiles_upcoming" class="topGadgetsBox" > <div class="sliderWrapper scrollView"> <div class="sliderBox" wposition="1" wtype="horizontal-widget" data-widget="Widget-Top-Mobiles-upcoming" category="Mobiles" productn="Apple IPhone SE 4" metaurl="/apple-iphone-se-4-price-in-india-P00038263" affiliate="null" data-price="49990" pagetype="savedArticle_Page"> <div class="parentWrapper"> <div class="imgWrapper"> <span class="fourRatioThree"></span> <img data-src="https://images.hindustantimes.com/tech/htmobile4/P38263/heroimage/153040-v1-apple-iphone-se-4-mobile-phone-large-1.jpg" class="lazyload" /> </div> <a class="title" href="/apple-iphone-se-4-price-in-india-P00038263" data-item-widget-name="top gadgets" data-item-product-name="apple iphone se 4" data-item-target-url="tech.hindustantimes.com/apple-iphone-se-4-price-in-india-P00038263" data-item-product-position="1" data-item-tracking-id="NA" data-item-marketplace="NA" data-item-product-type="Mobiles" data-item-tab-name="upcoming" data-item-event="product_card_click" data-item-page-name="bookmark page" data-item-widget-element="title" data-item-product-id="NA" class="parentWrapper" onclick="sendGA4Events(this);" ><h3 class="title"> Apple iPhone SE 4</h3></a> <div class="description"> White, 128 GB Storage, 6.1 inches Display Size</div> </div> <div class="sliderFooter"> <div class="priceText"> ₹ 49,990</div> <div class="buyNow" data-item-widget-name="top gadgets" data-item-product-name="apple iphone se 4" data-item-target-url="tech.hindustantimes.com/apple-iphone-se-4-price-in-india-P00038263" data-item-product-position="1" data-item-tracking-id="NA" data-item-marketplace="NA" data-item-product-type="Mobiles" data-item-tab-name="upcoming" data-item-product-id="NA" data-item-event="product_card_click" data-item-page-name="bookmark page" data-item-widget-element="check details" onclick="sendGA4Events(this);window.open('/apple-iphone-se-4-price-in-india-P00038263', '_self');">Check Details</div> </div> </div> <div class="sliderBox" wposition="1" wtype="horizontal-widget" data-widget="Widget-Top-Mobiles-upcoming" category="Mobiles" productn="Samsung Galaxy M06" metaurl="/samsung-galaxy-m06-price-in-india-P999938785" affiliate="null" data-price="11999" pagetype="savedArticle_Page"> <div class="parentWrapper"> <div class="imgWrapper"> <span class="fourRatioThree"></span> <img data-src="https://images.hindustantimes.com/tech/htmobile4/P38785/heroimage/155223-v1-samsung-galaxy-m06-mobile-phone-large-1.jpg" class="lazyload" /> </div> <a class="title" href="/samsung-galaxy-m06-price-in-india-P999938785" data-item-widget-name="top gadgets" data-item-product-name="samsung galaxy m06" data-item-target-url="tech.hindustantimes.com/samsung-galaxy-m06-price-in-india-P999938785" data-item-product-position="2" data-item-tracking-id="NA" data-item-marketplace="NA" data-item-product-type="Mobiles" data-item-tab-name="upcoming" data-item-event="product_card_click" data-item-page-name="bookmark page" data-item-widget-element="title" data-item-product-id="NA" class="parentWrapper" onclick="sendGA4Events(this);" ><h3 class="title"> Samsung Galaxy M06</h3></a> <div class="description"> 4 GB RAM, 64 GB Storage, 6.5 inches Display Size</div> </div> <div class="sliderFooter"> <div class="priceText"> ₹ 11,999</div> <div class="buyNow" data-item-widget-name="top gadgets" data-item-product-name="samsung galaxy m06" data-item-target-url="tech.hindustantimes.com/samsung-galaxy-m06-price-in-india-P999938785" data-item-product-position="2" data-item-tracking-id="NA" data-item-marketplace="NA" data-item-product-type="Mobiles" data-item-tab-name="upcoming" data-item-product-id="NA" data-item-event="product_card_click" data-item-page-name="bookmark page" data-item-widget-element="check details" onclick="sendGA4Events(this);window.open('/samsung-galaxy-m06-price-in-india-P999938785', '_self');">Check Details</div> </div> </div> <div class="sliderBox" wposition="1" wtype="horizontal-widget" data-widget="Widget-Top-Mobiles-upcoming" category="Mobiles" productn="Realme Narzo 70i Prime" metaurl="/realme-narzo-70i-prime-price-in-india-P999938320" affiliate="null" data-price="11999" pagetype="savedArticle_Page"> <div class="parentWrapper"> <div class="imgWrapper"> <span class="fourRatioThree"></span> <img data-src="https://images.hindustantimes.com/tech/htmobile4/P38320/heroimage/153176-v1-realme-narzo-70i-prime-mobile-phone-large-1.jpg" class="lazyload" /> </div> <a class="title" href="/realme-narzo-70i-prime-price-in-india-P999938320" data-item-widget-name="top gadgets" data-item-product-name="realme narzo 70i prime" data-item-target-url="tech.hindustantimes.com/realme-narzo-70i-prime-price-in-india-P999938320" data-item-product-position="3" data-item-tracking-id="NA" data-item-marketplace="NA" data-item-product-type="Mobiles" data-item-tab-name="upcoming" data-item-event="product_card_click" data-item-page-name="bookmark page" data-item-widget-element="title" data-item-product-id="NA" class="parentWrapper" onclick="sendGA4Events(this);" ><h3 class="title"> Realme Narzo 70i Prime</h3></a> <div class="description"> 4 GB RAM, 64 GB Storage, 6.5 inches Display Size</div> </div> <div class="sliderFooter"> <div class="priceText"> ₹ 11,999</div> <div class="buyNow" data-item-widget-name="top gadgets" data-item-product-name="realme narzo 70i prime" data-item-target-url="tech.hindustantimes.com/realme-narzo-70i-prime-price-in-india-P999938320" data-item-product-position="3" data-item-tracking-id="NA" data-item-marketplace="NA" data-item-product-type="Mobiles" data-item-tab-name="upcoming" data-item-product-id="NA" data-item-event="product_card_click" data-item-page-name="bookmark page" data-item-widget-element="check details" onclick="sendGA4Events(this);window.open('/realme-narzo-70i-prime-price-in-india-P999938320', '_self');">Check Details</div> </div> </div> <div class="sliderBox" wposition="1" wtype="horizontal-widget" data-widget="Widget-Top-Mobiles-upcoming" category="Mobiles" productn="OnePlus Nord 4T" metaurl="/oneplus-nord-4t-price-in-india-P999938293" affiliate="null" data-price="36990" pagetype="savedArticle_Page"> <div class="parentWrapper"> <div class="imgWrapper"> <span class="fourRatioThree"></span> <img data-src="https://images.hindustantimes.com/tech/htmobile4/P38293/heroimage/153106-v1-oneplus-nord-4t-mobile-phone-large-1.jpg" class="lazyload" /> </div> <a class="title" href="/oneplus-nord-4t-price-in-india-P999938293" data-item-widget-name="top gadgets" data-item-product-name="oneplus nord 4t" data-item-target-url="tech.hindustantimes.com/oneplus-nord-4t-price-in-india-P999938293" data-item-product-position="4" data-item-tracking-id="NA" data-item-marketplace="NA" data-item-product-type="Mobiles" data-item-tab-name="upcoming" data-item-event="product_card_click" data-item-page-name="bookmark page" data-item-widget-element="title" data-item-product-id="NA" class="parentWrapper" onclick="sendGA4Events(this);" ><h3 class="title"> OnePlus Nord 4T</h3></a> <div class="description"> 8 GB RAM, 128 GB Storage, 6.5 inches Display Size</div> </div> <div class="sliderFooter"> <div class="priceText"> ₹ 36,990</div> <div class="buyNow" data-item-widget-name="top gadgets" data-item-product-name="oneplus nord 4t" data-item-target-url="tech.hindustantimes.com/oneplus-nord-4t-price-in-india-P999938293" data-item-product-position="4" data-item-tracking-id="NA" data-item-marketplace="NA" data-item-product-type="Mobiles" data-item-tab-name="upcoming" data-item-product-id="NA" data-item-event="product_card_click" data-item-page-name="bookmark page" data-item-widget-element="check details" onclick="sendGA4Events(this);window.open('/oneplus-nord-4t-price-in-india-P999938293', '_self');">Check Details</div> </div> </div> </div> <a href="/mobile-finder/upcoming-phones" class="viewAllBtn" data-before='View'> Upcoming Mobile Phones <img src="/img/revamp/images/view-all-icon.png" width="13" height="12" loading="lazy" /> </a> </div> </div> <div class="scrollArea topGadgetsBoxWrapper" id="Tablets" > <span class="leftArrow" style="display: none;"><img src="https://images.hindustantimes.com/tech/static/revamp/images/png/slider-arrow-right-white-bg.png" width="48" height="48" loading="lazy"/></span> <span class="rightArrow"><img src="https://images.hindustantimes.com/tech/static/revamp/images/png/slider-arrow-right-white-bg.png" width="48" height="48" loading="lazy"/></span> <div id="Tablets_popular" class="topGadgetsBox" > <div class="sliderWrapper scrollView"> <div class="sliderBox" wposition="1" wtype="horizontal-widget" data-widget="Widget-Top-Tablets-popular" category="Tablets" productn="Honor Pad X9" metaurl="/honor-pad-x9-price-in-india-P000039094" affiliate="null" data-price="14999" pagetype="savedArticle_Page"> <div class="parentWrapper"> <div class="imgWrapper"> <span class="fourRatioThree"></span> <img data-src="https://images.hindustantimes.com/tech/htmobile4/P39094/heroimage/157184-v4-honor-pad-x9-tablet-large-1.jpg" class="lazyload" /> </div> <a class="title" href="/honor-pad-x9-price-in-india-P000039094" data-item-widget-name="top gadgets" data-item-product-name="honor pad x9" data-item-target-url="tech.hindustantimes.com/honor-pad-x9-price-in-india-P000039094" data-item-product-position="1" data-item-tracking-id="NA" data-item-marketplace="NA" data-item-product-type="Tablets" data-item-tab-name="popular" data-item-event="product_card_click" data-item-page-name="bookmark page" data-item-widget-element="title" data-item-product-id="NA" class="parentWrapper" onclick="sendGA4Events(this);" ><h3 class="title"> Honor Pad X9</h3></a> <div class="description"> Gray, 4 GB RAM, 128 GB Storage</div> </div> <div class="sliderFooter"> <div class="priceText"> ₹ 14,999</div> <div class="buyNow" data-item-widget-name="top gadgets" data-item-product-name="honor pad x9" data-item-target-url="tech.hindustantimes.com/honor-pad-x9-price-in-india-P000039094" data-item-product-position="1" data-item-tracking-id="NA" data-item-marketplace="NA" data-item-product-type="Tablets" data-item-tab-name="popular" data-item-product-id="NA" data-item-event="product_card_click" data-item-page-name="bookmark page" data-item-widget-element="check details" onclick="sendGA4Events(this);window.open('/honor-pad-x9-price-in-india-P000039094', '_self');">Check Details</div> </div> </div> <div class="sliderBox" wposition="1" wtype="horizontal-widget" data-widget="Widget-Top-Tablets-popular" category="Tablets" productn="Xiaomi Pad 6" metaurl="/xiaomi-pad-6-price-in-india-P00037803" affiliate="null" data-price="26498" pagetype="savedArticle_Page"> <div class="parentWrapper"> <div class="imgWrapper"> <span class="fourRatioThree"></span> <img data-src="https://images.hindustantimes.com/tech/htmobile4/P37803/heroimage/151131-v2-xiaomi-pad-6-tablet-large-1.jpg" class="lazyload" /> </div> <a class="title" href="/xiaomi-pad-6-price-in-india-P00037803" data-item-widget-name="top gadgets" data-item-product-name="xiaomi pad 6" data-item-target-url="tech.hindustantimes.com/xiaomi-pad-6-price-in-india-P00037803" data-item-product-position="2" data-item-tracking-id="NA" data-item-marketplace="NA" data-item-product-type="Tablets" data-item-tab-name="popular" data-item-event="product_card_click" data-item-page-name="bookmark page" data-item-widget-element="title" data-item-product-id="NA" class="parentWrapper" onclick="sendGA4Events(this);" ><h3 class="title"> Xiaomi Pad 6</h3></a> <div class="description"> Mist Blue, 6 GB RAM, 128 GB Storage</div> </div> <div class="sliderFooter"> <img src='https://images.hindustantimes.com/tech/static/revamp/images/png/amazon-in.png' loading="lazy" > <div class="priceText"><b>Discounted price:</b> ₹24,999</div> <span class="del"><b>Original price:</b><del>₹39,999</del></span> <div rel="noopener nofollow noreferrer sponsored" class="buyNow" data-item-widget-name="top gadgets" data-item-product-name="xiaomi pad 6" data-item-target-url="https://www.amazon.in/dp/B0C6R11QP5?tag=httech_p-21&linkCode=osi&th=1&psc=1" data-item-product-position="2" data-item-tracking-id="tech_others-21" data-item-marketplace="amazon" data-item-product-type="Tablets" data-item-tab-name="popular" data-item-product-id="B0C6R11QP5" data-item-event="affiliate_click" data-item-page-name="bookmark page" data-item-widget-element="buy now" onclick="sendGA4Events(this);window.open('https://www.amazon.in/dp/B0C6R11QP5?tag=tech_others-21&linkCode=osi&th=1&psc=1', '_blank');">Buy Now</div> </div> </div> <div class="sliderBox" wposition="1" wtype="horizontal-widget" data-widget="Widget-Top-Tablets-popular" category="Tablets" productn="Lenovo Tab M10 5G" metaurl="/lenovo-tab-m10-5g-price-in-india-P000039195" affiliate="null" data-price="24999" pagetype="savedArticle_Page"> <div class="parentWrapper"> <div class="imgWrapper"> <span class="fourRatioThree"></span> <img data-src="https://images.hindustantimes.com/tech/htmobile4/P39195/heroimage/158108-v1-lenovo-tab-m10-5g-tablet-large-1.jpg" class="lazyload" /> </div> <a class="title" href="/lenovo-tab-m10-5g-price-in-india-P000039195" data-item-widget-name="top gadgets" data-item-product-name="lenovo tab m10 5g" data-item-target-url="tech.hindustantimes.com/lenovo-tab-m10-5g-price-in-india-P000039195" data-item-product-position="3" data-item-tracking-id="NA" data-item-marketplace="NA" data-item-product-type="Tablets" data-item-tab-name="popular" data-item-event="product_card_click" data-item-page-name="bookmark page" data-item-widget-element="title" data-item-product-id="NA" class="parentWrapper" onclick="sendGA4Events(this);" ><h3 class="title"> Lenovo Tab M10 5G</h3></a> <div class="description"> Abyss Blue, 6 GB RAM, 128 GB Storage</div> </div> <div class="sliderFooter"> <img src='https://images.hindustantimes.com/tech/static/revamp/images/png/amazon-in.png' loading="lazy" > <div class="priceText"><b>Discounted price:</b> ₹21,890</div> <span class="del"><b>Original price:</b><del>₹47,000</del></span> <div rel="noopener nofollow noreferrer sponsored" class="buyNow" data-item-widget-name="top gadgets" data-item-product-name="lenovo tab m10 5g" data-item-target-url="https://www.amazon.in/dp/B0C9MBP7DJ?tag=httech_p-21&linkCode=osi&th=1&psc=1" data-item-product-position="3" data-item-tracking-id="tech_others-21" data-item-marketplace="amazon" data-item-product-type="Tablets" data-item-tab-name="popular" data-item-product-id="B0C9MBP7DJ" data-item-event="affiliate_click" data-item-page-name="bookmark page" data-item-widget-element="buy now" onclick="sendGA4Events(this);window.open('https://www.amazon.in/dp/B0C9MBP7DJ?tag=tech_others-21&linkCode=osi&th=1&psc=1', '_blank');">Buy Now</div> </div> </div> <div class="sliderBox" wposition="1" wtype="horizontal-widget" data-widget="Widget-Top-Tablets-popular" category="Tablets" productn="Realme Pad 2" metaurl="/realme-pad-2-price-in-india-P000039142" affiliate="null" data-price="19999" pagetype="savedArticle_Page"> <div class="parentWrapper"> <div class="imgWrapper"> <span class="fourRatioThree"></span> <img data-src="https://images.hindustantimes.com/tech/htmobile4/P39142/heroimage/157502-v2-realme-pad-2-tablet-large-1.jpg" class="lazyload" /> </div> <a class="title" href="/realme-pad-2-price-in-india-P000039142" data-item-widget-name="top gadgets" data-item-product-name="realme pad 2" data-item-target-url="tech.hindustantimes.com/realme-pad-2-price-in-india-P000039142" data-item-product-position="4" data-item-tracking-id="NA" data-item-marketplace="NA" data-item-product-type="Tablets" data-item-tab-name="popular" data-item-event="product_card_click" data-item-page-name="bookmark page" data-item-widget-element="title" data-item-product-id="NA" class="parentWrapper" onclick="sendGA4Events(this);" ><h3 class="title"> Realme Pad 2</h3></a> <div class="description"> Imagination Grey, 6 GB RAM, 128 GB Storage</div> </div> <div class="sliderFooter"> <img src='https://images.hindustantimes.com/tech/static/revamp/images/png/amazon-in.png' loading="lazy" > <div class="priceText"><b>Discounted price:</b> ₹19,999</div> <span class="del"><b>Original price:</b><del>₹32,999</del></span> <div rel="noopener nofollow noreferrer sponsored" class="buyNow" data-item-widget-name="top gadgets" data-item-product-name="realme pad 2" data-item-target-url="https://www.amazon.in/dp/B0CDBYYKWF?tag=httech_p-21&linkCode=osi&th=1&psc=1" data-item-product-position="4" data-item-tracking-id="tech_others-21" data-item-marketplace="amazon" data-item-product-type="Tablets" data-item-tab-name="popular" data-item-product-id="B0CDBYYKWF" data-item-event="affiliate_click" data-item-page-name="bookmark page" data-item-widget-element="buy now" onclick="sendGA4Events(this);window.open('https://www.amazon.in/dp/B0CDBYYKWF?tag=tech_others-21&linkCode=osi&th=1&psc=1', '_blank');">Buy Now</div> </div> </div> </div> <a href="/tablet-finder/popular-tablets" class="viewAllBtn" data-before='View'> Popular Tablets <img src="/img/revamp/images/view-all-icon.png" width="13" height="12" loading="lazy" /> </a> </div> <div id="Tablets_latest" class="topGadgetsBox" > <div class="sliderWrapper scrollView"> <div class="sliderBox" wposition="1" wtype="horizontal-widget" data-widget="Widget-Top-Tablets-latest" category="Tablets" productn="Apple IPad Mini 2024 WiFi + Cellular 128GB" metaurl="/apple-ipad-mini-2024-wifi-cellular-128gb-price-in-india-P000040277" affiliate="null" data-price="63900" pagetype="savedArticle_Page"> <div class="parentWrapper"> <div class="imgWrapper"> <span class="fourRatioThree"></span> <img data-src="https://images.hindustantimes.com/tech/htmobile4/P40277/heroimage/165370-v3-apple-ipad-mini-2024-wifi-cellular-128gb-tablet-large-1.jpg" class="lazyload" /> </div> <a class="title" href="/apple-ipad-mini-2024-wifi-cellular-128gb-price-in-india-P000040277" data-item-widget-name="top gadgets" data-item-product-name="apple ipad mini 2024 wifi plus cellular 128gb" data-item-target-url="tech.hindustantimes.com/apple-ipad-mini-2024-wifi-cellular-128gb-price-in-india-P000040277" data-item-product-position="1" data-item-tracking-id="NA" data-item-marketplace="NA" data-item-product-type="Tablets" data-item-tab-name="latest" data-item-event="product_card_click" data-item-page-name="bookmark page" data-item-widget-element="title" data-item-product-id="NA" class="parentWrapper" onclick="sendGA4Events(this);" ><h3 class="title"> Apple iPad Mini 2024 WiFi plus Cellular 128GB</h3></a> <div class="description"> Blue, 8 GB RAM, 128 GB Storage</div> </div> <div class="sliderFooter"> <div class="priceText"> ₹ 63,900</div> <div class="buyNow" data-item-widget-name="top gadgets" data-item-product-name="apple ipad mini 2024 wifi + cellular 128gb" data-item-target-url="tech.hindustantimes.com/apple-ipad-mini-2024-wifi-cellular-128gb-price-in-india-P000040277" data-item-product-position="1" data-item-tracking-id="NA" data-item-marketplace="NA" data-item-product-type="Tablets" data-item-tab-name="latest" data-item-product-id="NA" data-item-event="product_card_click" data-item-page-name="bookmark page" data-item-widget-element="check details" onclick="sendGA4Events(this);window.open('/apple-ipad-mini-2024-wifi-cellular-128gb-price-in-india-P000040277', '_self');">Check Details</div> </div> </div> <div class="sliderBox" wposition="1" wtype="horizontal-widget" data-widget="Widget-Top-Tablets-latest" category="Tablets" productn="Apple IPad Mini 2024" metaurl="/apple-ipad-mini-2024-price-in-india-P000040274" affiliate="null" data-price="48900" pagetype="savedArticle_Page"> <div class="parentWrapper"> <div class="imgWrapper"> <span class="fourRatioThree"></span> <img data-src="https://images.hindustantimes.com/tech/htmobile4/P40274/heroimage/165364-v3-apple-ipad-mini-2024-tablet-large-1.jpg" class="lazyload" /> </div> <a class="title" href="/apple-ipad-mini-2024-price-in-india-P000040274" data-item-widget-name="top gadgets" data-item-product-name="apple ipad mini 2024" data-item-target-url="tech.hindustantimes.com/apple-ipad-mini-2024-price-in-india-P000040274" data-item-product-position="2" data-item-tracking-id="NA" data-item-marketplace="NA" data-item-product-type="Tablets" data-item-tab-name="latest" data-item-event="product_card_click" data-item-page-name="bookmark page" data-item-widget-element="title" data-item-product-id="NA" class="parentWrapper" onclick="sendGA4Events(this);" ><h3 class="title"> Apple iPad Mini 2024</h3></a> <div class="description"> Blue, 8 GB RAM, 128 GB Storage</div> </div> <div class="sliderFooter"> <img src='https://images.hindustantimes.com/tech/static/revamp/images/png/amazon-in.png' loading="lazy" > <div class="priceText"> ₹49,900</div> <div rel="noopener nofollow noreferrer sponsored" class="buyNow" data-item-widget-name="top gadgets" data-item-product-name="apple ipad mini 2024" data-item-target-url="https://www.amazon.in/dp/B0DK3XN124?tag=httech_p-21&linkCode=osi&th=1&psc=1" data-item-product-position="2" data-item-tracking-id="tech_others-21" data-item-marketplace="amazon" data-item-product-type="Tablets" data-item-tab-name="latest" data-item-product-id="B0DK3XN124" data-item-event="affiliate_click" data-item-page-name="bookmark page" data-item-widget-element="buy now" onclick="sendGA4Events(this);window.open('https://www.amazon.in/dp/B0DK3XN124?tag=tech_others-21&linkCode=osi&th=1&psc=1', '_blank');">Buy Now</div> </div> </div> <div class="sliderBox" wposition="1" wtype="horizontal-widget" data-widget="Widget-Top-Tablets-latest" category="Tablets" productn="Apple IPad Mini 2024 WiFi 256GB" metaurl="/apple-ipad-mini-2024-wifi-256gb-price-in-india-P000040275" affiliate="null" data-price="58900" pagetype="savedArticle_Page"> <div class="parentWrapper"> <div class="imgWrapper"> <span class="fourRatioThree"></span> <img data-src="https://images.hindustantimes.com/tech/htmobile4/P40275/heroimage/165368-v3-apple-ipad-mini-2024-wifi-256gb-tablet-large-1.jpg" class="lazyload" /> </div> <a class="title" href="/apple-ipad-mini-2024-wifi-256gb-price-in-india-P000040275" data-item-widget-name="top gadgets" data-item-product-name="apple ipad mini 2024 wifi 256gb" data-item-target-url="tech.hindustantimes.com/apple-ipad-mini-2024-wifi-256gb-price-in-india-P000040275" data-item-product-position="3" data-item-tracking-id="NA" data-item-marketplace="NA" data-item-product-type="Tablets" data-item-tab-name="latest" data-item-event="product_card_click" data-item-page-name="bookmark page" data-item-widget-element="title" data-item-product-id="NA" class="parentWrapper" onclick="sendGA4Events(this);" ><h3 class="title"> Apple iPad Mini 2024 WiFi 256GB</h3></a> <div class="description"> Blue, 8 GB RAM, 256 GB Storage</div> </div> <div class="sliderFooter"> <img src='https://images.hindustantimes.com/tech/static/revamp/images/png/amazon-in.png' loading="lazy" > <div class="priceText"> ₹59,899</div> <div rel="noopener nofollow noreferrer sponsored" class="buyNow" data-item-widget-name="top gadgets" data-item-product-name="apple ipad mini 2024 wifi 256gb" data-item-target-url="https://www.amazon.in/dp/B0DK3W5891?tag=httech_p-21&linkCode=osi&th=1&psc=1" data-item-product-position="3" data-item-tracking-id="tech_others-21" data-item-marketplace="amazon" data-item-product-type="Tablets" data-item-tab-name="latest" data-item-product-id="B0DK3W5891" data-item-event="affiliate_click" data-item-page-name="bookmark page" data-item-widget-element="buy now" onclick="sendGA4Events(this);window.open('https://www.amazon.in/dp/B0DK3W5891?tag=tech_others-21&linkCode=osi&th=1&psc=1', '_blank');">Buy Now</div> </div> </div> <div class="sliderBox" wposition="1" wtype="horizontal-widget" data-widget="Widget-Top-Tablets-latest" category="Tablets" productn="Samsung Galaxy Tab S10 Plus 5G" metaurl="/samsung-galaxy-tab-s10-plus-5g-price-in-india-P000040241" affiliate="null" data-price="98299" pagetype="savedArticle_Page"> <div class="parentWrapper"> <div class="imgWrapper"> <span class="fourRatioThree"></span> <img data-src="https://images.hindustantimes.com/tech/htmobile4/P40241/heroimage/165121-v4-samsung-galaxy-tab-s10-plus-5g-tablet-large-1.jpg" class="lazyload" /> </div> <a class="title" href="/samsung-galaxy-tab-s10-plus-5g-price-in-india-P000040241" data-item-widget-name="top gadgets" data-item-product-name="samsung galaxy tab s10 plus 5g" data-item-target-url="tech.hindustantimes.com/samsung-galaxy-tab-s10-plus-5g-price-in-india-P000040241" data-item-product-position="4" data-item-tracking-id="NA" data-item-marketplace="NA" data-item-product-type="Tablets" data-item-tab-name="latest" data-item-event="product_card_click" data-item-page-name="bookmark page" data-item-widget-element="title" data-item-product-id="NA" class="parentWrapper" onclick="sendGA4Events(this);" ><h3 class="title"> Samsung Galaxy Tab S10 Plus 5G</h3></a> <div class="description"> Moonstone Gray, 12 GB RAM, 256 GB Storage</div> </div> <div class="sliderFooter"> <img src='https://images.hindustantimes.com/tech/static/revamp/images/png/amazon-in.png' loading="lazy" > <div class="priceText"><b>Discounted price:</b> ₹98,725</div> <span class="del"><b>Original price:</b><del>₹117,599</del></span> <div rel="noopener nofollow noreferrer sponsored" class="buyNow" data-item-widget-name="top gadgets" data-item-product-name="samsung galaxy tab s10 plus 5g" data-item-target-url="https://www.amazon.in/dp/B0DHH6H5DS?tag=httech_p-21&linkCode=osi&th=1&psc=1" data-item-product-position="4" data-item-tracking-id="tech_others-21" data-item-marketplace="amazon" data-item-product-type="Tablets" data-item-tab-name="latest" data-item-product-id="B0DHH6H5DS" data-item-event="affiliate_click" data-item-page-name="bookmark page" data-item-widget-element="buy now" onclick="sendGA4Events(this);window.open('https://www.amazon.in/dp/B0DHH6H5DS?tag=tech_others-21&linkCode=osi&th=1&psc=1', '_blank');">Buy Now</div> </div> </div> </div> <a href="/tablet-finder/latest-tablets" class="viewAllBtn" data-before='View'> Latest Tablets <img src="/img/revamp/images/view-all-icon.png" width="13" height="12" loading="lazy" /> </a> </div> <div id="Tablets_upcoming" class="topGadgetsBox" > <div class="sliderWrapper scrollView"> <div class="sliderBox" wposition="1" wtype="horizontal-widget" data-widget="Widget-Top-Tablets-upcoming" category="Tablets" productn="Xiaomi Redmi Tablet" metaurl="/xiaomi-redmi-tablet-price-in-india-P00038039" affiliate="null" data-price="29990" pagetype="savedArticle_Page"> <div class="parentWrapper"> <div class="imgWrapper"> <span class="fourRatioThree"></span> <img data-src="https://images.hindustantimes.com/tech/htmobile4/P38039/heroimage/152068-v1-xiaomi-redmi-tablet-tablet-large-1.jpg" class="lazyload" /> </div> <a class="title" href="/xiaomi-redmi-tablet-price-in-india-P00038039" data-item-widget-name="top gadgets" data-item-product-name="xiaomi redmi tablet" data-item-target-url="tech.hindustantimes.com/xiaomi-redmi-tablet-price-in-india-P00038039" data-item-product-position="1" data-item-tracking-id="NA" data-item-marketplace="NA" data-item-product-type="Tablets" data-item-tab-name="upcoming" data-item-event="product_card_click" data-item-page-name="bookmark page" data-item-widget-element="title" data-item-product-id="NA" class="parentWrapper" onclick="sendGA4Events(this);" ><h3 class="title"> Xiaomi Redmi Tablet</h3></a> <div class="description"> 6 GB RAM, 128 GB Storage, 10.1 inches Display Size</div> </div> <div class="sliderFooter"> <div class="priceText"> ₹ 29,990</div> <div class="buyNow" data-item-widget-name="top gadgets" data-item-product-name="xiaomi redmi tablet" data-item-target-url="tech.hindustantimes.com/xiaomi-redmi-tablet-price-in-india-P00038039" data-item-product-position="1" data-item-tracking-id="NA" data-item-marketplace="NA" data-item-product-type="Tablets" data-item-tab-name="upcoming" data-item-product-id="NA" data-item-event="product_card_click" data-item-page-name="bookmark page" data-item-widget-element="check details" onclick="sendGA4Events(this);window.open('/xiaomi-redmi-tablet-price-in-india-P00038039', '_self');">Check Details</div> </div> </div> <div class="sliderBox" wposition="1" wtype="horizontal-widget" data-widget="Widget-Top-Tablets-upcoming" category="Tablets" productn="Realme Pad Slim" metaurl="/realme-pad-slim-price-in-india-P000038544" affiliate="null" data-price="25999" pagetype="savedArticle_Page"> <div class="parentWrapper"> <div class="imgWrapper"> <span class="fourRatioThree"></span> <img data-src="https://images.hindustantimes.com/tech/htmobile4/P38544/heroimage/154251-v1-realme-pad-slim-tablet-large-1.jpg" class="lazyload" /> </div> <a class="title" href="/realme-pad-slim-price-in-india-P000038544" data-item-widget-name="top gadgets" data-item-product-name="realme pad slim" data-item-target-url="tech.hindustantimes.com/realme-pad-slim-price-in-india-P000038544" data-item-product-position="2" data-item-tracking-id="NA" data-item-marketplace="NA" data-item-product-type="Tablets" data-item-tab-name="upcoming" data-item-event="product_card_click" data-item-page-name="bookmark page" data-item-widget-element="title" data-item-product-id="NA" class="parentWrapper" onclick="sendGA4Events(this);" ><h3 class="title"> Realme Pad Slim</h3></a> <div class="description"> 6 GB RAM, 128 GB Storage, 10.4 inches Display Size</div> </div> <div class="sliderFooter"> <div class="priceText"> ₹ 25,999</div> <div class="buyNow" data-item-widget-name="top gadgets" data-item-product-name="realme pad slim" data-item-target-url="tech.hindustantimes.com/realme-pad-slim-price-in-india-P000038544" data-item-product-position="2" data-item-tracking-id="NA" data-item-marketplace="NA" data-item-product-type="Tablets" data-item-tab-name="upcoming" data-item-product-id="NA" data-item-event="product_card_click" data-item-page-name="bookmark page" data-item-widget-element="check details" onclick="sendGA4Events(this);window.open('/realme-pad-slim-price-in-india-P000038544', '_self');">Check Details</div> </div> </div> <div class="sliderBox" wposition="1" wtype="horizontal-widget" data-widget="Widget-Top-Tablets-upcoming" category="Tablets" productn="Xiaomi Redmi Pad 5G" metaurl="/xiaomi-redmi-pad-5g-price-in-india-P000038599" affiliate="null" data-price="21499" pagetype="savedArticle_Page"> <div class="parentWrapper"> <div class="imgWrapper"> <span class="fourRatioThree"></span> <img data-src="https://images.hindustantimes.com/tech/htmobile4/P38599/heroimage/154544-v1-xiaomi-redmi-pad-5g-tablet-large-1.jpg" class="lazyload" /> </div> <a class="title" href="/xiaomi-redmi-pad-5g-price-in-india-P000038599" data-item-widget-name="top gadgets" data-item-product-name="xiaomi redmi pad 5g" data-item-target-url="tech.hindustantimes.com/xiaomi-redmi-pad-5g-price-in-india-P000038599" data-item-product-position="3" data-item-tracking-id="NA" data-item-marketplace="NA" data-item-product-type="Tablets" data-item-tab-name="upcoming" data-item-event="product_card_click" data-item-page-name="bookmark page" data-item-widget-element="title" data-item-product-id="NA" class="parentWrapper" onclick="sendGA4Events(this);" ><h3 class="title"> Xiaomi Redmi Pad 5G</h3></a> <div class="description"> 4 GB RAM, 64 GB Storage, 8.0 inches Display Size</div> </div> <div class="sliderFooter"> <div class="priceText"> ₹ 21,499</div> <div class="buyNow" data-item-widget-name="top gadgets" data-item-product-name="xiaomi redmi pad 5g" data-item-target-url="tech.hindustantimes.com/xiaomi-redmi-pad-5g-price-in-india-P000038599" data-item-product-position="3" data-item-tracking-id="NA" data-item-marketplace="NA" data-item-product-type="Tablets" data-item-tab-name="upcoming" data-item-product-id="NA" data-item-event="product_card_click" data-item-page-name="bookmark page" data-item-widget-element="check details" onclick="sendGA4Events(this);window.open('/xiaomi-redmi-pad-5g-price-in-india-P000038599', '_self');">Check Details</div> </div> </div> <div class="sliderBox" wposition="1" wtype="horizontal-widget" data-widget="Widget-Top-Tablets-upcoming" category="Tablets" productn="Google Pixel Tablet Pro" metaurl="/google-pixel-tablet-pro-price-in-india-P000038620" affiliate="null" data-price="43990" pagetype="savedArticle_Page"> <div class="parentWrapper"> <div class="imgWrapper"> <span class="fourRatioThree"></span> <img data-src="https://images.hindustantimes.com/tech/htmobile4/P38620/heroimage/154645-v1-google-pixel-tablet-pro-tablet-large-1.jpg" class="lazyload" /> </div> <a class="title" href="/google-pixel-tablet-pro-price-in-india-P000038620" data-item-widget-name="top gadgets" data-item-product-name="google pixel tablet pro" data-item-target-url="tech.hindustantimes.com/google-pixel-tablet-pro-price-in-india-P000038620" data-item-product-position="4" data-item-tracking-id="NA" data-item-marketplace="NA" data-item-product-type="Tablets" data-item-tab-name="upcoming" data-item-event="product_card_click" data-item-page-name="bookmark page" data-item-widget-element="title" data-item-product-id="NA" class="parentWrapper" onclick="sendGA4Events(this);" ><h3 class="title"> Google Pixel Tablet Pro</h3></a> <div class="description"> 8 GB RAM, 256 GB Storage, 10.95 inches Display Size</div> </div> <div class="sliderFooter"> <div class="priceText"> ₹ 43,990</div> <div class="buyNow" data-item-widget-name="top gadgets" data-item-product-name="google pixel tablet pro" data-item-target-url="tech.hindustantimes.com/google-pixel-tablet-pro-price-in-india-P000038620" data-item-product-position="4" data-item-tracking-id="NA" data-item-marketplace="NA" data-item-product-type="Tablets" data-item-tab-name="upcoming" data-item-product-id="NA" data-item-event="product_card_click" data-item-page-name="bookmark page" data-item-widget-element="check details" onclick="sendGA4Events(this);window.open('/google-pixel-tablet-pro-price-in-india-P000038620', '_self');">Check Details</div> </div> </div> </div> <a href="/tablet-finder/upcoming-tablets" class="viewAllBtn" data-before='View'> Upcoming Tablets <img src="/img/revamp/images/view-all-icon.png" width="13" height="12" loading="lazy" /> </a> </div> </div> <div class="scrollArea topGadgetsBoxWrapper" id="Laptops" > <span class="leftArrow" style="display: none;"><img src="https://images.hindustantimes.com/tech/static/revamp/images/png/slider-arrow-right-white-bg.png" width="48" height="48" loading="lazy"/></span> <span class="rightArrow"><img src="https://images.hindustantimes.com/tech/static/revamp/images/png/slider-arrow-right-white-bg.png" width="48" height="48" loading="lazy"/></span> <div id="Laptops_popular" class="topGadgetsBox" > <div class="sliderWrapper scrollView"> <div class="sliderBox" wposition="1" wtype="horizontal-widget" data-widget="Widget-Top-Laptops-popular" category="Laptops" productn="Samsung Galaxy Book 4 Pro 360 NP960QGK-KG2IN Laptop (Intel Core Ultra 7/16 GB/1 TB SSD/Windows 11)" metaurl="/samsung-galaxy-book-4-pro-360-np960qgk-kg2in-laptop-intel-core-ultra-7-16-gb-1-tb-ssd-windows-11-price-in-india-P1000160729" affiliate="null" data-price="168999" pagetype="savedArticle_Page"> <div class="parentWrapper"> <div class="imgWrapper"> <span class="fourRatioThree"></span> <img data-src="https://images.hindustantimes.com/tech/htmobile4/P160729/heroimage/samsung-4-pro-360-np960qgk-kg2in-160729-v1-large-1.jpg" class="lazyload" /> </div> <a class="title" href="/samsung-galaxy-book-4-pro-360-np960qgk-kg2in-laptop-intel-core-ultra-7-16-gb-1-tb-ssd-windows-11-price-in-india-P1000160729" data-item-widget-name="top gadgets" data-item-product-name="samsung galaxy book 4 pro 360 np960qgk kg2in laptop" data-item-target-url="tech.hindustantimes.com/samsung-galaxy-book-4-pro-360-np960qgk-kg2in-laptop-intel-core-ultra-7-16-gb-1-tb-ssd-windows-11-price-in-india-P1000160729" data-item-product-position="1" data-item-tracking-id="NA" data-item-marketplace="NA" data-item-product-type="Laptops" data-item-tab-name="popular" data-item-event="product_card_click" data-item-page-name="bookmark page" data-item-widget-element="title" data-item-product-id="NA" class="parentWrapper" onclick="sendGA4Events(this);" ><h3 class="title"> Samsung Galaxy Book 4 Pro 360 NP960QGK KG2IN Laptop</h3></a> <div class="description"> Moonstone Gray, 16 GB RAM, 1 TB SSD</div> </div> <div class="sliderFooter"> <div class="priceText"> ₹ 168,999</div> <div class="buyNow" data-item-widget-name="top gadgets" data-item-product-name="samsung galaxy book 4 pro 360 np960qgk-kg2in laptop (intel core ultra 7/16 gb/1 tb ssd/windows 11)" data-item-target-url="tech.hindustantimes.com/samsung-galaxy-book-4-pro-360-np960qgk-kg2in-laptop-intel-core-ultra-7-16-gb-1-tb-ssd-windows-11-price-in-india-P1000160729" data-item-product-position="1" data-item-tracking-id="NA" data-item-marketplace="NA" data-item-product-type="Laptops" data-item-tab-name="popular" data-item-product-id="NA" data-item-event="product_card_click" data-item-page-name="bookmark page" data-item-widget-element="check details" onclick="sendGA4Events(this);window.open('/samsung-galaxy-book-4-pro-360-np960qgk-kg2in-laptop-intel-core-ultra-7-16-gb-1-tb-ssd-windows-11-price-in-india-P1000160729', '_self');">Check Details</div> </div> </div> <div class="sliderBox" wposition="1" wtype="horizontal-widget" data-widget="Widget-Top-Laptops-popular" category="Laptops" productn="Dell Inspiron 7000 15 7577 (A568502WIN9) Laptop (Core I7 7th Gen/16 GB/1 TB 256 GB SSD/Windows 10/6 GB)" metaurl="/dell-inspiron-7000-15-7577-a568502win9-laptop-core-i7-7th-gen-16-gb-1-tb-256-gb-ssd-windows-10-6-gb-price-in-india-P1000122774" affiliate="null" data-price="114990" pagetype="savedArticle_Page"> <div class="parentWrapper"> <div class="imgWrapper"> <span class="fourRatioThree"></span> <img data-src="https://images.hindustantimes.com/tech/htmobile4/P122774/heroimage/-122774-large-1.jpg" class="lazyload" /> </div> <a class="title" href="/dell-inspiron-7000-15-7577-a568502win9-laptop-core-i7-7th-gen-16-gb-1-tb-256-gb-ssd-windows-10-6-gb-price-in-india-P1000122774" data-item-widget-name="top gadgets" data-item-product-name="dell inspiron 7000 15 7577 a568502win9 laptop" data-item-target-url="tech.hindustantimes.com/dell-inspiron-7000-15-7577-a568502win9-laptop-core-i7-7th-gen-16-gb-1-tb-256-gb-ssd-windows-10-6-gb-price-in-india-P1000122774" data-item-product-position="2" data-item-tracking-id="NA" data-item-marketplace="NA" data-item-product-type="Laptops" data-item-tab-name="popular" data-item-event="product_card_click" data-item-page-name="bookmark page" data-item-widget-element="title" data-item-product-id="NA" class="parentWrapper" onclick="sendGA4Events(this);" ><h3 class="title"> Dell Inspiron 7000 15 7577 A568502WIN9 Laptop</h3></a> <div class="description"> Black, 16 GB RAM, 1 TB HDD</div> </div> <div class="sliderFooter"> <div class="priceText"> ₹ 114,990</div> <div class="buyNow" data-item-widget-name="top gadgets" data-item-product-name="dell inspiron 7000 15 7577 (a568502win9) laptop (core i7 7th gen/16 gb/1 tb 256 gb ssd/windows 10/6 gb)" data-item-target-url="tech.hindustantimes.com/dell-inspiron-7000-15-7577-a568502win9-laptop-core-i7-7th-gen-16-gb-1-tb-256-gb-ssd-windows-10-6-gb-price-in-india-P1000122774" data-item-product-position="2" data-item-tracking-id="NA" data-item-marketplace="NA" data-item-product-type="Laptops" data-item-tab-name="popular" data-item-product-id="NA" data-item-event="product_card_click" data-item-page-name="bookmark page" data-item-widget-element="check details" onclick="sendGA4Events(this);window.open('/dell-inspiron-7000-15-7577-a568502win9-laptop-core-i7-7th-gen-16-gb-1-tb-256-gb-ssd-windows-10-6-gb-price-in-india-P1000122774', '_self');">Check Details</div> </div> </div> <div class="sliderBox" wposition="1" wtype="horizontal-widget" data-widget="Widget-Top-Laptops-popular" category="Laptops" productn="Lenovo Ideapad Slim 3 (82KU017KIN) Laptop (AMD Hexa Core Ryzen 5/8 GB/512 GB SSD/Windows 11)" metaurl="/lenovo-ideapad-slim-3-82ku017kin-laptop-amd-hexa-core-ryzen-5-8-gb-512-gb-ssd-windows-11-price-in-india-P1000149788" affiliate="null" data-price="36510" pagetype="savedArticle_Page"> <div class="parentWrapper"> <div class="imgWrapper"> <span class="fourRatioThree"></span> <img data-src="https://images.hindustantimes.com/tech/htmobile4/P149788/heroimage/lenovo-ideapad-slim-3-82ku017kin-laptop-amd-hexa-core-ryzen-5-8-gb-512-gb-ssd-windows-11-149788-v1-large-1.jpg" class="lazyload" /> </div> <a class="title" href="/lenovo-ideapad-slim-3-82ku017kin-laptop-amd-hexa-core-ryzen-5-8-gb-512-gb-ssd-windows-11-price-in-india-P1000149788" data-item-widget-name="top gadgets" data-item-product-name="lenovo ideapad slim 3 82ku017kin laptop" data-item-target-url="tech.hindustantimes.com/lenovo-ideapad-slim-3-82ku017kin-laptop-amd-hexa-core-ryzen-5-8-gb-512-gb-ssd-windows-11-price-in-india-P1000149788" data-item-product-position="3" data-item-tracking-id="NA" data-item-marketplace="NA" data-item-product-type="Laptops" data-item-tab-name="popular" data-item-event="product_card_click" data-item-page-name="bookmark page" data-item-widget-element="title" data-item-product-id="NA" class="parentWrapper" onclick="sendGA4Events(this);" ><h3 class="title"> Lenovo Ideapad Slim 3 82KU017KIN Laptop</h3></a> <div class="description"> Arctic Grey, 8 GB RAM, 512 GB SSD</div> </div> <div class="sliderFooter"> <div class="priceText"> ₹ 36,510</div> <div class="buyNow" data-item-widget-name="top gadgets" data-item-product-name="lenovo ideapad slim 3 (82ku017kin) laptop (amd hexa core ryzen 5/8 gb/512 gb ssd/windows 11)" data-item-target-url="tech.hindustantimes.com/lenovo-ideapad-slim-3-82ku017kin-laptop-amd-hexa-core-ryzen-5-8-gb-512-gb-ssd-windows-11-price-in-india-P1000149788" data-item-product-position="3" data-item-tracking-id="NA" data-item-marketplace="NA" data-item-product-type="Laptops" data-item-tab-name="popular" data-item-product-id="NA" data-item-event="product_card_click" data-item-page-name="bookmark page" data-item-widget-element="check details" onclick="sendGA4Events(this);window.open('/lenovo-ideapad-slim-3-82ku017kin-laptop-amd-hexa-core-ryzen-5-8-gb-512-gb-ssd-windows-11-price-in-india-P1000149788', '_self');">Check Details</div> </div> </div> <div class="sliderBox" wposition="1" wtype="horizontal-widget" data-widget="Widget-Top-Laptops-popular" category="Laptops" productn="HP 15s-eq2144AU (50M63PA) Laptop (AMD Hexa Core Ryzen 5/8 GB/512 GB SSD/Windows 11)" metaurl="/hp-15s-eq2144au-50m63pa-laptop-amd-hexa-core-ryzen-5-8-gb-512-gb-ssd-windows-11-price-in-india-P000149425" affiliate="null" data-price="36499" pagetype="savedArticle_Page"> <div class="parentWrapper"> <div class="imgWrapper"> <span class="fourRatioThree"></span> <img data-src="https://images.hindustantimes.com/tech/htmobile4/P149425/heroimage/hp-15s-eq2144au-50m63pa-laptop-amd-hexa-core-ryzen-5-8-gb-512-gb-ssd-windows-11-149425-v3-large-1.jpg" class="lazyload" /> </div> <a class="title" href="/hp-15s-eq2144au-50m63pa-laptop-amd-hexa-core-ryzen-5-8-gb-512-gb-ssd-windows-11-price-in-india-P000149425" data-item-widget-name="top gadgets" data-item-product-name="hp 15s eq2144au 50m63pa laptop" data-item-target-url="tech.hindustantimes.com/hp-15s-eq2144au-50m63pa-laptop-amd-hexa-core-ryzen-5-8-gb-512-gb-ssd-windows-11-price-in-india-P000149425" data-item-product-position="4" data-item-tracking-id="NA" data-item-marketplace="NA" data-item-product-type="Laptops" data-item-tab-name="popular" data-item-event="product_card_click" data-item-page-name="bookmark page" data-item-widget-element="title" data-item-product-id="NA" class="parentWrapper" onclick="sendGA4Events(this);" ><h3 class="title"> HP 15s eq2144AU 50M63PA Laptop</h3></a> <div class="description"> Natural Silver, 8 GB RAM, 512 GB SSD</div> </div> <div class="sliderFooter"> <div class="priceText"> ₹ 36,499</div> <div class="buyNow" data-item-widget-name="top gadgets" data-item-product-name="hp 15s-eq2144au (50m63pa) laptop (amd hexa core ryzen 5/8 gb/512 gb ssd/windows 11)" data-item-target-url="tech.hindustantimes.com/hp-15s-eq2144au-50m63pa-laptop-amd-hexa-core-ryzen-5-8-gb-512-gb-ssd-windows-11-price-in-india-P000149425" data-item-product-position="4" data-item-tracking-id="NA" data-item-marketplace="NA" data-item-product-type="Laptops" data-item-tab-name="popular" data-item-product-id="NA" data-item-event="product_card_click" data-item-page-name="bookmark page" data-item-widget-element="check details" onclick="sendGA4Events(this);window.open('/hp-15s-eq2144au-50m63pa-laptop-amd-hexa-core-ryzen-5-8-gb-512-gb-ssd-windows-11-price-in-india-P000149425', '_self');">Check Details</div> </div> </div> </div> <a href="/laptop-finder/popular-laptops" class="viewAllBtn" data-before='View'> Popular Laptops <img src="/img/revamp/images/view-all-icon.png" width="13" height="12" loading="lazy" /> </a> </div> <div id="Laptops_latest" class="topGadgetsBox" > <div class="sliderWrapper scrollView"> <div class="sliderBox" wposition="1" wtype="horizontal-widget" data-widget="Widget-Top-Laptops-latest" category="Laptops" productn="Lenovo LOQ (83DV007GIN) Laptop (Core I5 13th Gen/16 GB/512 GB SSD/Windows 11/6 GB)" metaurl="/lenovo-loq-83dv007gin-laptop-core-i5-13th-gen-16-gb-512-gb-ssd-windows-11-6-gb-price-in-india-P1000162845" affiliate="null" data-price="84490" pagetype="savedArticle_Page"> <div class="parentWrapper"> <div class="imgWrapper"> <span class="fourRatioThree"></span> <img data-src="https://images.hindustantimes.com/tech/htmobile4/P162845/heroimage/lenovo-83dv007gin-162845-v1-large-1.jpg" class="lazyload" /> </div> <a class="title" href="/lenovo-loq-83dv007gin-laptop-core-i5-13th-gen-16-gb-512-gb-ssd-windows-11-6-gb-price-in-india-P1000162845" data-item-widget-name="top gadgets" data-item-product-name="lenovo loq 83dv007gin laptop" data-item-target-url="tech.hindustantimes.com/lenovo-loq-83dv007gin-laptop-core-i5-13th-gen-16-gb-512-gb-ssd-windows-11-6-gb-price-in-india-P1000162845" data-item-product-position="1" data-item-tracking-id="NA" data-item-marketplace="NA" data-item-product-type="Laptops" data-item-tab-name="latest" data-item-event="product_card_click" data-item-page-name="bookmark page" data-item-widget-element="title" data-item-product-id="NA" class="parentWrapper" onclick="sendGA4Events(this);" ><h3 class="title"> Lenovo LOQ 83DV007GIN Laptop</h3></a> <div class="description"> Luna Grey, 16 GB RAM, 512 GB SSD</div> </div> <div class="sliderFooter"> <img src='https://images.hindustantimes.com/tech/static/revamp/images/png/amazon-in.png' loading="lazy" > <div class="priceText"><b>Discounted price:</b> ₹80,990</div> <span class="del"><b>Original price:</b><del>₹112,990</del></span> <div rel="noopener nofollow noreferrer sponsored" class="buyNow" data-item-widget-name="top gadgets" data-item-product-name="lenovo loq (83dv007gin) laptop (core i5 13th gen/16 gb/512 gb ssd/windows 11/6 gb)" data-item-target-url="https://www.amazon.in/dp/B0D49W5KZP?tag=httech_p-21&linkCode=ogi&th=1&psc=1" data-item-product-position="1" data-item-tracking-id="tech_others-21" data-item-marketplace="amazon" data-item-product-type="Laptops" data-item-tab-name="latest" data-item-product-id="B0D49W5KZP" data-item-event="affiliate_click" data-item-page-name="bookmark page" data-item-widget-element="buy now" onclick="sendGA4Events(this);window.open('https://www.amazon.in/dp/B0D49W5KZP?tag=tech_others-21&linkCode=ogi&th=1&psc=1', '_blank');">Buy Now</div> </div> </div> <div class="sliderBox" wposition="1" wtype="horizontal-widget" data-widget="Widget-Top-Laptops-latest" category="Laptops" productn="Samsung Galaxy Book 4 360 NP750QGK-KG2IN Laptop (Core 7 Series 1 /16 GB/512 GB SSD/Windows 11)" metaurl="/samsung-galaxy-book-4-360-np750qgk-kg2in-laptop-core-7-series-1-16-gb-512-gb-ssd-windows-11-price-in-india-P1000160702" affiliate="null" data-price="122990" pagetype="savedArticle_Page"> <div class="parentWrapper"> <div class="imgWrapper"> <span class="fourRatioThree"></span> <img data-src="https://images.hindustantimes.com/tech/htmobile4/P160702/heroimage/samsung-4-360-np750qgk-kg2in-160702-v1-large-1.jpg" class="lazyload" /> </div> <a class="title" href="/samsung-galaxy-book-4-360-np750qgk-kg2in-laptop-core-7-series-1-16-gb-512-gb-ssd-windows-11-price-in-india-P1000160702" data-item-widget-name="top gadgets" data-item-product-name="samsung galaxy book 4 360 np750qgk kg2in laptop" data-item-target-url="tech.hindustantimes.com/samsung-galaxy-book-4-360-np750qgk-kg2in-laptop-core-7-series-1-16-gb-512-gb-ssd-windows-11-price-in-india-P1000160702" data-item-product-position="2" data-item-tracking-id="NA" data-item-marketplace="NA" data-item-product-type="Laptops" data-item-tab-name="latest" data-item-event="product_card_click" data-item-page-name="bookmark page" data-item-widget-element="title" data-item-product-id="NA" class="parentWrapper" onclick="sendGA4Events(this);" ><h3 class="title"> Samsung Galaxy Book 4 360 NP750QGK KG2IN Laptop</h3></a> <div class="description"> Gray, 16 GB RAM, 512 GB SSD</div> </div> <div class="sliderFooter"> <div class="priceText"> ₹ 122,990</div> <div class="buyNow" data-item-widget-name="top gadgets" data-item-product-name="samsung galaxy book 4 360 np750qgk-kg2in laptop (core 7 series 1 /16 gb/512 gb ssd/windows 11)" data-item-target-url="tech.hindustantimes.com/samsung-galaxy-book-4-360-np750qgk-kg2in-laptop-core-7-series-1-16-gb-512-gb-ssd-windows-11-price-in-india-P1000160702" data-item-product-position="2" data-item-tracking-id="NA" data-item-marketplace="NA" data-item-product-type="Laptops" data-item-tab-name="latest" data-item-product-id="NA" data-item-event="product_card_click" data-item-page-name="bookmark page" data-item-widget-element="check details" onclick="sendGA4Events(this);window.open('/samsung-galaxy-book-4-360-np750qgk-kg2in-laptop-core-7-series-1-16-gb-512-gb-ssd-windows-11-price-in-india-P1000160702', '_self');">Check Details</div> </div> </div> <div class="sliderBox" wposition="1" wtype="horizontal-widget" data-widget="Widget-Top-Laptops-latest" category="Laptops" productn="Asus Zenbook 14 UM3402YA-KP741WS Laptop (AMD Octa Core Ryzen 7/16 GB/512 GB SSD/Windows 11)" metaurl="/asus-zenbook-14-um3402ya-kp741ws-laptop-amd-octa-core-ryzen-7-16-gb-512-gb-ssd-windows-11-price-in-india-P1000155362" affiliate="null" data-price="77990" pagetype="savedArticle_Page"> <div class="parentWrapper"> <div class="imgWrapper"> <span class="fourRatioThree"></span> <img data-src="https://images.hindustantimes.com/tech/htmobile4/P155362/heroimage/asus-um3402ya-kp741ws-155362-v1-large-1.jpg" class="lazyload" /> </div> <a class="title" href="/asus-zenbook-14-um3402ya-kp741ws-laptop-amd-octa-core-ryzen-7-16-gb-512-gb-ssd-windows-11-price-in-india-P1000155362" data-item-widget-name="top gadgets" data-item-product-name="asus zenbook 14 um3402ya kp741ws laptop" data-item-target-url="tech.hindustantimes.com/asus-zenbook-14-um3402ya-kp741ws-laptop-amd-octa-core-ryzen-7-16-gb-512-gb-ssd-windows-11-price-in-india-P1000155362" data-item-product-position="3" data-item-tracking-id="NA" data-item-marketplace="NA" data-item-product-type="Laptops" data-item-tab-name="latest" data-item-event="product_card_click" data-item-page-name="bookmark page" data-item-widget-element="title" data-item-product-id="NA" class="parentWrapper" onclick="sendGA4Events(this);" ><h3 class="title"> Asus Zenbook 14 UM3402YA KP741WS Laptop</h3></a> <div class="description"> Jade Black, 16 GB RAM, 512 GB SSD</div> </div> <div class="sliderFooter"> <img src='https://images.hindustantimes.com/tech/static/revamp/images/png/amazon-in.png' loading="lazy" > <div class="priceText"><b>Discounted price:</b> ₹69,990</div> <span class="del"><b>Original price:</b><del>₹118,990</del></span> <div rel="noopener nofollow noreferrer sponsored" class="buyNow" data-item-widget-name="top gadgets" data-item-product-name="asus zenbook 14 um3402ya-kp741ws laptop (amd octa core ryzen 7/16 gb/512 gb ssd/windows 11)" data-item-target-url="https://www.amazon.in/dp/B0BTWFKBDQ?tag=httech_p-21&linkCode=ogi&th=1&psc=1" data-item-product-position="3" data-item-tracking-id="tech_others-21" data-item-marketplace="amazon" data-item-product-type="Laptops" data-item-tab-name="latest" data-item-product-id="B0BTWFKBDQ" data-item-event="affiliate_click" data-item-page-name="bookmark page" data-item-widget-element="buy now" onclick="sendGA4Events(this);window.open('https://www.amazon.in/dp/B0BTWFKBDQ?tag=tech_others-21&linkCode=ogi&th=1&psc=1', '_blank');">Buy Now</div> </div> </div> <div class="sliderBox" wposition="1" wtype="horizontal-widget" data-widget="Widget-Top-Laptops-latest" category="Laptops" productn="Asus VivoBook 16 X1605VA-MB946WS Laptop (Core I9 13th Gen/16 GB/512 GB SSD/Windows 11)" metaurl="/asus-vivobook-16-x1605va-mb946ws-laptop-core-i9-13th-gen-16-gb-512-gb-ssd-windows-11-price-in-india-P1000159311" affiliate="null" data-price="94990" pagetype="savedArticle_Page"> <div class="parentWrapper"> <div class="imgWrapper"> <span class="fourRatioThree"></span> <img data-src="https://images.hindustantimes.com/tech/htmobile4/P159311/heroimage/asus-x1605va-mb946ws-159311-v1-large-1.jpg" class="lazyload" /> </div> <a class="title" href="/asus-vivobook-16-x1605va-mb946ws-laptop-core-i9-13th-gen-16-gb-512-gb-ssd-windows-11-price-in-india-P1000159311" data-item-widget-name="top gadgets" data-item-product-name="asus vivobook 16 x1605va mb946ws laptop" data-item-target-url="tech.hindustantimes.com/asus-vivobook-16-x1605va-mb946ws-laptop-core-i9-13th-gen-16-gb-512-gb-ssd-windows-11-price-in-india-P1000159311" data-item-product-position="4" data-item-tracking-id="NA" data-item-marketplace="NA" data-item-product-type="Laptops" data-item-tab-name="latest" data-item-event="product_card_click" data-item-page-name="bookmark page" data-item-widget-element="title" data-item-product-id="NA" class="parentWrapper" onclick="sendGA4Events(this);" ><h3 class="title"> Asus VivoBook 16 X1605VA MB946WS Laptop</h3></a> <div class="description"> Cool Silver, 16 GB RAM, 512 GB SSD</div> </div> <div class="sliderFooter"> <img src='https://images.hindustantimes.com/tech/static/revamp/images/png/amazon-in.png' loading="lazy" > <div class="priceText"><b>Discounted price:</b> ₹77,990</div> <span class="del"><b>Original price:</b><del>₹116,990</del></span> <div rel="noopener nofollow noreferrer sponsored" class="buyNow" data-item-widget-name="top gadgets" data-item-product-name="asus vivobook 16 x1605va-mb946ws laptop (core i9 13th gen/16 gb/512 gb ssd/windows 11)" data-item-target-url="https://www.amazon.in/dp/B0CHMYJ9BK?tag=httech_p-21&linkCode=ogi&th=1&psc=1" data-item-product-position="4" data-item-tracking-id="tech_others-21" data-item-marketplace="amazon" data-item-product-type="Laptops" data-item-tab-name="latest" data-item-product-id="B0CHMYJ9BK" data-item-event="affiliate_click" data-item-page-name="bookmark page" data-item-widget-element="buy now" onclick="sendGA4Events(this);window.open('https://www.amazon.in/dp/B0CHMYJ9BK?tag=tech_others-21&linkCode=ogi&th=1&psc=1', '_blank');">Buy Now</div> </div> </div> </div> <a href="/laptop-finder/latest-laptops" class="viewAllBtn" data-before='View'> Latest Laptops <img src="/img/revamp/images/view-all-icon.png" width="13" height="12" loading="lazy" /> </a> </div> <div id="Laptops_upcoming" class="topGadgetsBox" > <div class="sliderWrapper scrollView"> <div class="sliderBox" wposition="1" wtype="horizontal-widget" data-widget="Widget-Top-Laptops-upcoming" category="Laptops" productn="Infinix INBook X1 Pro Laptop (Core I3 10th Gen/8 GB/256 GB SSD/Windows 10)" metaurl="/infinix-inbook-x1-pro-laptop-core-i3-10th-gen-8-gb-256-gb-ssd-windows-10-price-in-india-P000148446" affiliate="null" data-price="47999" pagetype="savedArticle_Page"> <div class="parentWrapper"> <div class="imgWrapper"> <span class="fourRatioThree"></span> <img data-src="https://images.hindustantimes.com/tech/htmobile4/P148446/heroimage/infinix-inbook-x1-pro-148446-v1-large-1.jpg" class="lazyload" /> </div> <a class="title" href="/infinix-inbook-x1-pro-laptop-core-i3-10th-gen-8-gb-256-gb-ssd-windows-10-price-in-india-P000148446" data-item-widget-name="top gadgets" data-item-product-name="infinix inbook x1 pro laptop" data-item-target-url="tech.hindustantimes.com/infinix-inbook-x1-pro-laptop-core-i3-10th-gen-8-gb-256-gb-ssd-windows-10-price-in-india-P000148446" data-item-product-position="1" data-item-tracking-id="NA" data-item-marketplace="NA" data-item-product-type="Laptops" data-item-tab-name="upcoming" data-item-event="product_card_click" data-item-page-name="bookmark page" data-item-widget-element="title" data-item-product-id="NA" class="parentWrapper" onclick="sendGA4Events(this);" ><h3 class="title"> Infinix INBook X1 Pro Laptop</h3></a> <div class="description"> Black, 8 GB RAM, 256 GB SSD</div> </div> <div class="sliderFooter"> <div class="priceText"> ₹ 47,999</div> <div class="buyNow" data-item-widget-name="top gadgets" data-item-product-name="infinix inbook x1 pro laptop (core i3 10th gen/8 gb/256 gb ssd/windows 10)" data-item-target-url="tech.hindustantimes.com/infinix-inbook-x1-pro-laptop-core-i3-10th-gen-8-gb-256-gb-ssd-windows-10-price-in-india-P000148446" data-item-product-position="1" data-item-tracking-id="NA" data-item-marketplace="NA" data-item-product-type="Laptops" data-item-tab-name="upcoming" data-item-product-id="NA" data-item-event="product_card_click" data-item-page-name="bookmark page" data-item-widget-element="check details" onclick="sendGA4Events(this);window.open('/infinix-inbook-x1-pro-laptop-core-i3-10th-gen-8-gb-256-gb-ssd-windows-10-price-in-india-P000148446', '_self');">Check Details</div> </div> </div> <div class="sliderBox" wposition="1" wtype="horizontal-widget" data-widget="Widget-Top-Laptops-upcoming" category="Laptops" productn="Apple MacBook Pro 16 Ultrabook (Apple M1 Max/32 GB/512 GB SSD/macOS Monterey)" metaurl="/apple-macbook-pro-16-ultrabook-apple-m1-max-32-gb-512-gb-ssd-macos-monterey-price-in-india-P1000147556" affiliate="null" data-price="300000" pagetype="savedArticle_Page"> <div class="parentWrapper"> <div class="imgWrapper"> <span class="fourRatioThree"></span> <img data-src="https://images.hindustantimes.com/tech/htmobile4/P147556/heroimage/apple-macbook-pro-16-147556-v1-large-1.jpg" class="lazyload" /> </div> <a class="title" href="/apple-macbook-pro-16-ultrabook-apple-m1-max-32-gb-512-gb-ssd-macos-monterey-price-in-india-P1000147556" data-item-widget-name="top gadgets" data-item-product-name="apple macbook pro 16 ultrabook apple m1 max 32 gb 512 gb ssd macos monterey" data-item-target-url="tech.hindustantimes.com/apple-macbook-pro-16-ultrabook-apple-m1-max-32-gb-512-gb-ssd-macos-monterey-price-in-india-P1000147556" data-item-product-position="2" data-item-tracking-id="NA" data-item-marketplace="NA" data-item-product-type="Laptops" data-item-tab-name="upcoming" data-item-event="product_card_click" data-item-page-name="bookmark page" data-item-widget-element="title" data-item-product-id="NA" class="parentWrapper" onclick="sendGA4Events(this);" ><h3 class="title"> Apple MacBook Pro 16 Ultrabook Apple M1 Max 32 GB 512 GB SSD macOS Monterey</h3></a> <div class="description"> Space Grey, 32 GB RAM, 512 GB SSD</div> </div> <div class="sliderFooter"> <div class="priceText"> ₹ 300,000</div> <div class="buyNow" data-item-widget-name="top gadgets" data-item-product-name="apple macbook pro 16 ultrabook (apple m1 max/32 gb/512 gb ssd/macos monterey)" data-item-target-url="tech.hindustantimes.com/apple-macbook-pro-16-ultrabook-apple-m1-max-32-gb-512-gb-ssd-macos-monterey-price-in-india-P1000147556" data-item-product-position="2" data-item-tracking-id="NA" data-item-marketplace="NA" data-item-product-type="Laptops" data-item-tab-name="upcoming" data-item-product-id="NA" data-item-event="product_card_click" data-item-page-name="bookmark page" data-item-widget-element="check details" onclick="sendGA4Events(this);window.open('/apple-macbook-pro-16-ultrabook-apple-m1-max-32-gb-512-gb-ssd-macos-monterey-price-in-india-P1000147556', '_self');">Check Details</div> </div> </div> <div class="sliderBox" wposition="1" wtype="horizontal-widget" data-widget="Widget-Top-Laptops-upcoming" category="Laptops" productn="Asus ROG Strix G17 G713QM-K4215TS Laptop (AMD Octa Core Ryzen 9/16 GB/1 TB SSD/Windows 10/6 GB)" metaurl="/asus-rog-strix-g17-g713qm-k4215ts-laptop-amd-octa-core-ryzen-9-16-gb-1-tb-ssd-windows-10-6-gb-price-in-india-P000145896" affiliate="null" data-price="159000" pagetype="savedArticle_Page"> <div class="parentWrapper"> <div class="imgWrapper"> <span class="fourRatioThree"></span> <img data-src="https://images.hindustantimes.com/tech/htmobile4/P145896/heroimage/asus-g713qm-k4215ts-145896-v1-large-1.jpg" class="lazyload" /> </div> <a class="title" href="/asus-rog-strix-g17-g713qm-k4215ts-laptop-amd-octa-core-ryzen-9-16-gb-1-tb-ssd-windows-10-6-gb-price-in-india-P000145896" data-item-widget-name="top gadgets" data-item-product-name="asus rog strix g17 g713qm k4215ts laptop" data-item-target-url="tech.hindustantimes.com/asus-rog-strix-g17-g713qm-k4215ts-laptop-amd-octa-core-ryzen-9-16-gb-1-tb-ssd-windows-10-6-gb-price-in-india-P000145896" data-item-product-position="3" data-item-tracking-id="NA" data-item-marketplace="NA" data-item-product-type="Laptops" data-item-tab-name="upcoming" data-item-event="product_card_click" data-item-page-name="bookmark page" data-item-widget-element="title" data-item-product-id="NA" class="parentWrapper" onclick="sendGA4Events(this);" ><h3 class="title"> Asus ROG Strix G17 G713QM K4215TS Laptop</h3></a> <div class="description"> Black, 16 GB RAM, 1 TB SSD</div> </div> <div class="sliderFooter"> <div class="priceText"> ₹ 159,000</div> <div class="buyNow" data-item-widget-name="top gadgets" data-item-product-name="asus rog strix g17 g713qm-k4215ts laptop (amd octa core ryzen 9/16 gb/1 tb ssd/windows 10/6 gb)" data-item-target-url="tech.hindustantimes.com/asus-rog-strix-g17-g713qm-k4215ts-laptop-amd-octa-core-ryzen-9-16-gb-1-tb-ssd-windows-10-6-gb-price-in-india-P000145896" data-item-product-position="3" data-item-tracking-id="NA" data-item-marketplace="NA" data-item-product-type="Laptops" data-item-tab-name="upcoming" data-item-product-id="NA" data-item-event="product_card_click" data-item-page-name="bookmark page" data-item-widget-element="check details" onclick="sendGA4Events(this);window.open('/asus-rog-strix-g17-g713qm-k4215ts-laptop-amd-octa-core-ryzen-9-16-gb-1-tb-ssd-windows-10-6-gb-price-in-india-P000145896', '_self');">Check Details</div> </div> </div> <div class="sliderBox" wposition="1" wtype="horizontal-widget" data-widget="Widget-Top-Laptops-upcoming" category="Laptops" productn="Dell Inspiron 15 5590 (C583503WIN8) Laptop (Core I5 10th Gen/8 GB/512 GB SSD/Windows 10)" metaurl="/dell-inspiron-15-5590-c583503win8-laptop-core-i5-10th-gen-8-gb-512-gb-ssd-windows-10-price-in-india-P1000143479" affiliate="null" data-price="65000" pagetype="savedArticle_Page"> <div class="parentWrapper"> <div class="imgWrapper"> <span class="fourRatioThree"></span> <img data-src="https://images.hindustantimes.com/tech/htmobile4/P143479/heroimage/dell-15-5590-c583503win8-143479-v1-large-1.jpg" class="lazyload" /> </div> <a class="title" href="/dell-inspiron-15-5590-c583503win8-laptop-core-i5-10th-gen-8-gb-512-gb-ssd-windows-10-price-in-india-P1000143479" data-item-widget-name="top gadgets" data-item-product-name="dell inspiron 15 5590 c583503win8 laptop" data-item-target-url="tech.hindustantimes.com/dell-inspiron-15-5590-c583503win8-laptop-core-i5-10th-gen-8-gb-512-gb-ssd-windows-10-price-in-india-P1000143479" data-item-product-position="4" data-item-tracking-id="NA" data-item-marketplace="NA" data-item-product-type="Laptops" data-item-tab-name="upcoming" data-item-event="product_card_click" data-item-page-name="bookmark page" data-item-widget-element="title" data-item-product-id="NA" class="parentWrapper" onclick="sendGA4Events(this);" ><h3 class="title"> Dell Inspiron 15 5590 C583503WIN8 Laptop</h3></a> <div class="description"> Silver, 8 GB RAM, 512 GB SSD</div> </div> <div class="sliderFooter"> <div class="priceText"> ₹ 65,000</div> <div class="buyNow" data-item-widget-name="top gadgets" data-item-product-name="dell inspiron 15 5590 (c583503win8) laptop (core i5 10th gen/8 gb/512 gb ssd/windows 10)" data-item-target-url="tech.hindustantimes.com/dell-inspiron-15-5590-c583503win8-laptop-core-i5-10th-gen-8-gb-512-gb-ssd-windows-10-price-in-india-P1000143479" data-item-product-position="4" data-item-tracking-id="NA" data-item-marketplace="NA" data-item-product-type="Laptops" data-item-tab-name="upcoming" data-item-product-id="NA" data-item-event="product_card_click" data-item-page-name="bookmark page" data-item-widget-element="check details" onclick="sendGA4Events(this);window.open('/dell-inspiron-15-5590-c583503win8-laptop-core-i5-10th-gen-8-gb-512-gb-ssd-windows-10-price-in-india-P1000143479', '_self');">Check Details</div> </div> </div> </div> <a href="/laptop-finder/upcoming-laptops" class="viewAllBtn" data-before='View'> Upcoming Laptops <img src="/img/revamp/images/view-all-icon.png" width="13" height="12" loading="lazy" /> </a> </div> </div> <div class="scrollArea topGadgetsBoxWrapper" id="SmartWatches" > <span class="leftArrow" style="display: none;"><img src="https://images.hindustantimes.com/tech/static/revamp/images/png/slider-arrow-right-white-bg.png" width="48" height="48" loading="lazy"/></span> <span class="rightArrow"><img src="https://images.hindustantimes.com/tech/static/revamp/images/png/slider-arrow-right-white-bg.png" width="48" height="48" loading="lazy"/></span> <div id="SmartWatches_popular" class="topGadgetsBox" > <div class="sliderWrapper scrollView"> <div class="sliderBox" wposition="1" wtype="horizontal-widget" data-widget="Widget-Top-Smart Watches-popular" category="Smart Watches" productn="Boult Audio Drift 2" metaurl="/smart-watches/boult-audio-drift-2-price-in-india-P0000158632" affiliate="null" data-price="1499" pagetype="savedArticle_Page"> <div class="parentWrapper"> <div class="imgWrapper"> <span class="fourRatioThree"></span> <img data-src="https://images.hindustantimes.com/tech/htmobile4/P158632/heroimage/boult-audio-drift-2-158632-large-1.jpg" class="lazyload" /> </div> <a class="title" href="/smart-watches/boult-audio-drift-2-price-in-india-P0000158632" data-item-widget-name="top gadgets" data-item-product-name="boult audio drift 2" data-item-target-url="tech.hindustantimes.com/smart-watches/boult-audio-drift-2-price-in-india-P0000158632" data-item-product-position="1" data-item-tracking-id="NA" data-item-marketplace="NA" data-item-product-type="Smart Watches" data-item-tab-name="popular" data-item-event="product_card_click" data-item-page-name="bookmark page" data-item-widget-element="title" data-item-product-id="NA" class="parentWrapper" onclick="sendGA4Events(this);" ><h3 class="title"> Boult Audio Drift 2</h3></a> <div class="description"> 1.84 Inch | Water proof | Receive call | Fitness Tracking</div> </div> <div class="sliderFooter"> <div class="priceText"> ₹ 1,499</div> <div class="buyNow" data-item-widget-name="top gadgets" data-item-product-name="boult audio drift 2" data-item-target-url="tech.hindustantimes.com/smart-watches/boult-audio-drift-2-price-in-india-P0000158632" data-item-product-position="1" data-item-tracking-id="NA" data-item-marketplace="NA" data-item-product-type="Smart Watches" data-item-tab-name="popular" data-item-product-id="NA" data-item-event="product_card_click" data-item-page-name="bookmark page" data-item-widget-element="check details" onclick="sendGA4Events(this);window.open('/smart-watches/boult-audio-drift-2-price-in-india-P0000158632', '_self');">Check Details</div> </div> </div> <div class="sliderBox" wposition="1" wtype="horizontal-widget" data-widget="Widget-Top-Smart Watches-popular" category="Smart Watches" productn="Noise ColorFit Quad Call" metaurl="/smart-watches/noise-colorfit-quad-call-price-in-india-P0000156878" affiliate="null" data-price="1499" pagetype="savedArticle_Page"> <div class="parentWrapper"> <div class="imgWrapper"> <span class="fourRatioThree"></span> <img data-src="https://images.hindustantimes.com/tech/htmobile4/P156878/heroimage/noise-colorfit-quad-call-156878-large-1.jpg" class="lazyload" /> </div> <a class="title" href="/smart-watches/noise-colorfit-quad-call-price-in-india-P0000156878" data-item-widget-name="top gadgets" data-item-product-name="noise colorfit quad call" data-item-target-url="tech.hindustantimes.com/smart-watches/noise-colorfit-quad-call-price-in-india-P0000156878" data-item-product-position="2" data-item-tracking-id="NA" data-item-marketplace="NA" data-item-product-type="Smart Watches" data-item-tab-name="popular" data-item-event="product_card_click" data-item-page-name="bookmark page" data-item-widget-element="title" data-item-product-id="NA" class="parentWrapper" onclick="sendGA4Events(this);" ><h3 class="title"> Noise ColorFit Quad Call</h3></a> <div class="description"> 1.91 Inch | Water proof | Receive call | Fitness Tracking</div> </div> <div class="sliderFooter"> <div class="priceText"> ₹ 1,499</div> <div class="buyNow" data-item-widget-name="top gadgets" data-item-product-name="noise colorfit quad call" data-item-target-url="tech.hindustantimes.com/smart-watches/noise-colorfit-quad-call-price-in-india-P0000156878" data-item-product-position="2" data-item-tracking-id="NA" data-item-marketplace="NA" data-item-product-type="Smart Watches" data-item-tab-name="popular" data-item-product-id="NA" data-item-event="product_card_click" data-item-page-name="bookmark page" data-item-widget-element="check details" onclick="sendGA4Events(this);window.open('/smart-watches/noise-colorfit-quad-call-price-in-india-P0000156878', '_self');">Check Details</div> </div> </div> <div class="sliderBox" wposition="1" wtype="horizontal-widget" data-widget="Widget-Top-Smart Watches-popular" category="Smart Watches" productn="Fire-Boltt Lumos" metaurl="/smart-watches/fire-boltt-lumos-price-in-india-P0000159596" affiliate="null" data-price="1799" pagetype="savedArticle_Page"> <div class="parentWrapper"> <div class="imgWrapper"> <span class="fourRatioThree"></span> <img data-src="https://images.hindustantimes.com/tech/htmobile4/P159596/heroimage/fire-boltt-lumos-159596-large-1.jpg" class="lazyload" /> </div> <a class="title" href="/smart-watches/fire-boltt-lumos-price-in-india-P0000159596" data-item-widget-name="top gadgets" data-item-product-name="fire boltt lumos" data-item-target-url="tech.hindustantimes.com/smart-watches/fire-boltt-lumos-price-in-india-P0000159596" data-item-product-position="3" data-item-tracking-id="NA" data-item-marketplace="NA" data-item-product-type="Smart Watches" data-item-tab-name="popular" data-item-event="product_card_click" data-item-page-name="bookmark page" data-item-widget-element="title" data-item-product-id="NA" class="parentWrapper" onclick="sendGA4Events(this);" ><h3 class="title"> Fire Boltt Lumos</h3></a> <div class="description"> 1.91 Inch Inch | Water proof | Receive call | Fitness Tracking</div> </div> <div class="sliderFooter"> <div class="priceText"> ₹ 1,799</div> <div class="buyNow" data-item-widget-name="top gadgets" data-item-product-name="fire-boltt lumos" data-item-target-url="tech.hindustantimes.com/smart-watches/fire-boltt-lumos-price-in-india-P0000159596" data-item-product-position="3" data-item-tracking-id="NA" data-item-marketplace="NA" data-item-product-type="Smart Watches" data-item-tab-name="popular" data-item-product-id="NA" data-item-event="product_card_click" data-item-page-name="bookmark page" data-item-widget-element="check details" onclick="sendGA4Events(this);window.open('/smart-watches/fire-boltt-lumos-price-in-india-P0000159596', '_self');">Check Details</div> </div> </div> <div class="sliderBox" wposition="1" wtype="horizontal-widget" data-widget="Widget-Top-Smart Watches-popular" category="Smart Watches" productn="Fire-Boltt Encore" metaurl="/smart-watches/fire-boltt-encore-price-in-india-P0000158932" affiliate="null" data-price="1799" pagetype="savedArticle_Page"> <div class="parentWrapper"> <div class="imgWrapper"> <span class="fourRatioThree"></span> <img data-src="https://images.hindustantimes.com/tech/htmobile4/P158932/heroimage/fire-boltt-encore-158932-large-1.jpg" class="lazyload" /> </div> <a class="title" href="/smart-watches/fire-boltt-encore-price-in-india-P0000158932" data-item-widget-name="top gadgets" data-item-product-name="fire boltt encore" data-item-target-url="tech.hindustantimes.com/smart-watches/fire-boltt-encore-price-in-india-P0000158932" data-item-product-position="4" data-item-tracking-id="NA" data-item-marketplace="NA" data-item-product-type="Smart Watches" data-item-tab-name="popular" data-item-event="product_card_click" data-item-page-name="bookmark page" data-item-widget-element="title" data-item-product-id="NA" class="parentWrapper" onclick="sendGA4Events(this);" ><h3 class="title"> Fire Boltt Encore</h3></a> <div class="description"> 1.84 Inch | Water proof | Receive call | Fitness Tracking</div> </div> <div class="sliderFooter"> <div class="priceText"> ₹ 1,799</div> <div class="buyNow" data-item-widget-name="top gadgets" data-item-product-name="fire-boltt encore" data-item-target-url="tech.hindustantimes.com/smart-watches/fire-boltt-encore-price-in-india-P0000158932" data-item-product-position="4" data-item-tracking-id="NA" data-item-marketplace="NA" data-item-product-type="Smart Watches" data-item-tab-name="popular" data-item-product-id="NA" data-item-event="product_card_click" data-item-page-name="bookmark page" data-item-widget-element="check details" onclick="sendGA4Events(this);window.open('/smart-watches/fire-boltt-encore-price-in-india-P0000158932', '_self');">Check Details</div> </div> </div> </div> <a href="/smart-watches/popular-smart-watches" class="viewAllBtn" data-before='View'> Popular Smart Watches <img src="/img/revamp/images/view-all-icon.png" width="13" height="12" loading="lazy" /> </a> </div> <div id="SmartWatches_latest" class="topGadgetsBox" > <div class="sliderWrapper scrollView"> <div class="sliderBox" wposition="1" wtype="horizontal-widget" data-widget="Widget-Top-Smart Watches-latest" category="Smart Watches" productn="Garmin Vivomove 3" metaurl="/smart-watches/garmin-vivomove-3-price-in-india-P0000137573" affiliate="null" data-price="22002" pagetype="savedArticle_Page"> <div class="parentWrapper"> <div class="imgWrapper"> <span class="fourRatioThree"></span> <img data-src="https://images.hindustantimes.com/tech/htmobile4/P137575/heroimage/garmin-vivomove-3-137575-large-1.jpg" class="lazyload" /> </div> <a class="title" href="/smart-watches/garmin-vivomove-3-price-in-india-P0000137573" data-item-widget-name="top gadgets" data-item-product-name="garmin vivomove 3" data-item-target-url="tech.hindustantimes.com/smart-watches/garmin-vivomove-3-price-in-india-P0000137573" data-item-product-position="1" data-item-tracking-id="NA" data-item-marketplace="NA" data-item-product-type="Smart Watches" data-item-tab-name="latest" data-item-event="product_card_click" data-item-page-name="bookmark page" data-item-widget-element="title" data-item-product-id="NA" class="parentWrapper" onclick="sendGA4Events(this);" ><h3 class="title"> Garmin Vivomove 3</h3></a> <div class="description"> OLED Display | 0.72 Inch Inch | Water proof | Receive call | Fitness Tracking</div> </div> <div class="sliderFooter"> <div class="priceText"> ₹ 22,002</div> <div class="buyNow" data-item-widget-name="top gadgets" data-item-product-name="garmin vivomove 3" data-item-target-url="tech.hindustantimes.com/smart-watches/garmin-vivomove-3-price-in-india-P0000137573" data-item-product-position="1" data-item-tracking-id="NA" data-item-marketplace="NA" data-item-product-type="Smart Watches" data-item-tab-name="latest" data-item-product-id="NA" data-item-event="product_card_click" data-item-page-name="bookmark page" data-item-widget-element="check details" onclick="sendGA4Events(this);window.open('/smart-watches/garmin-vivomove-3-price-in-india-P0000137573', '_self');">Check Details</div> </div> </div> <div class="sliderBox" wposition="1" wtype="horizontal-widget" data-widget="Widget-Top-Smart Watches-latest" category="Smart Watches" productn="Fossil Gen 6 Wellness" metaurl="/smart-watches/fossil-gen-6-wellness-price-in-india-P0000153531" affiliate="null" data-price="23995" pagetype="savedArticle_Page"> <div class="parentWrapper"> <div class="imgWrapper"> <span class="fourRatioThree"></span> <img data-src="https://images.hindustantimes.com/tech/htmobile4/P153531/heroimage/fossil-gen-6-wellness-153531-large-1.jpg" class="lazyload" /> </div> <a class="title" href="/smart-watches/fossil-gen-6-wellness-price-in-india-P0000153531" data-item-widget-name="top gadgets" data-item-product-name="fossil gen 6 wellness" data-item-target-url="tech.hindustantimes.com/smart-watches/fossil-gen-6-wellness-price-in-india-P0000153531" data-item-product-position="2" data-item-tracking-id="NA" data-item-marketplace="NA" data-item-product-type="Smart Watches" data-item-tab-name="latest" data-item-event="product_card_click" data-item-page-name="bookmark page" data-item-widget-element="title" data-item-product-id="NA" class="parentWrapper" onclick="sendGA4Events(this);" ><h3 class="title"> Fossil Gen 6 Wellness</h3></a> <div class="description"> AMOLED Display | 1.28 Inch | Water proof | Receive call | Fitness Tracking</div> </div> <div class="sliderFooter"> <div class="priceText"> ₹ 23,995</div> <div class="buyNow" data-item-widget-name="top gadgets" data-item-product-name="fossil gen 6 wellness" data-item-target-url="tech.hindustantimes.com/smart-watches/fossil-gen-6-wellness-price-in-india-P0000153531" data-item-product-position="2" data-item-tracking-id="NA" data-item-marketplace="NA" data-item-product-type="Smart Watches" data-item-tab-name="latest" data-item-product-id="NA" data-item-event="product_card_click" data-item-page-name="bookmark page" data-item-widget-element="check details" onclick="sendGA4Events(this);window.open('/smart-watches/fossil-gen-6-wellness-price-in-india-P0000153531', '_self');">Check Details</div> </div> </div> <div class="sliderBox" wposition="1" wtype="horizontal-widget" data-widget="Widget-Top-Smart Watches-latest" category="Smart Watches" productn="Garmin Instinct 2S Solar" metaurl="/smart-watches/garmin-instinct-2s-solar-price-in-india-P0000149678" affiliate="null" data-price="44990" pagetype="savedArticle_Page"> <div class="parentWrapper"> <div class="imgWrapper"> <span class="fourRatioThree"></span> <img data-src="https://images.hindustantimes.com/tech/htmobile4/P149678/heroimage/garmin-instinct-2s-solar-149678-large-1.jpg" class="lazyload" /> </div> <a class="title" href="/smart-watches/garmin-instinct-2s-solar-price-in-india-P0000149678" data-item-widget-name="top gadgets" data-item-product-name="garmin instinct 2s solar" data-item-target-url="tech.hindustantimes.com/smart-watches/garmin-instinct-2s-solar-price-in-india-P0000149678" data-item-product-position="3" data-item-tracking-id="NA" data-item-marketplace="NA" data-item-product-type="Smart Watches" data-item-tab-name="latest" data-item-event="product_card_click" data-item-page-name="bookmark page" data-item-widget-element="title" data-item-product-id="NA" class="parentWrapper" onclick="sendGA4Events(this);" ><h3 class="title"> Garmin Instinct 2S Solar</h3></a> <div class="description"> LCD Display | 2 Inch | Water proof | Receive call | Fitness Tracking</div> </div> <div class="sliderFooter"> <div class="priceText"> ₹ 44,990</div> <div class="buyNow" data-item-widget-name="top gadgets" data-item-product-name="garmin instinct 2s solar" data-item-target-url="tech.hindustantimes.com/smart-watches/garmin-instinct-2s-solar-price-in-india-P0000149678" data-item-product-position="3" data-item-tracking-id="NA" data-item-marketplace="NA" data-item-product-type="Smart Watches" data-item-tab-name="latest" data-item-product-id="NA" data-item-event="product_card_click" data-item-page-name="bookmark page" data-item-widget-element="check details" onclick="sendGA4Events(this);window.open('/smart-watches/garmin-instinct-2s-solar-price-in-india-P0000149678', '_self');">Check Details</div> </div> </div> <div class="sliderBox" wposition="1" wtype="horizontal-widget" data-widget="Widget-Top-Smart Watches-latest" category="Smart Watches" productn="Fastrack Revoltt FS1" metaurl="/smart-watches/fastrack-revoltt-fs1-price-in-india-P0000155407" affiliate="null" data-price="1695" pagetype="savedArticle_Page"> <div class="parentWrapper"> <div class="imgWrapper"> <span class="fourRatioThree"></span> <img data-src="https://images.hindustantimes.com/tech/htmobile4/P155407/heroimage/fastrack-revoltt-fs1-155407-large-1.jpg" class="lazyload" /> </div> <a class="title" href="/smart-watches/fastrack-revoltt-fs1-price-in-india-P0000155407" data-item-widget-name="top gadgets" data-item-product-name="fastrack revoltt fs1" data-item-target-url="tech.hindustantimes.com/smart-watches/fastrack-revoltt-fs1-price-in-india-P0000155407" data-item-product-position="4" data-item-tracking-id="NA" data-item-marketplace="NA" data-item-product-type="Smart Watches" data-item-tab-name="latest" data-item-event="product_card_click" data-item-page-name="bookmark page" data-item-widget-element="title" data-item-product-id="NA" class="parentWrapper" onclick="sendGA4Events(this);" ><h3 class="title"> Fastrack Revoltt FS1</h3></a> <div class="description"> 1.84 Inch | Water proof | Receive call | Fitness Tracking</div> </div> <div class="sliderFooter"> <div class="priceText"> ₹ 1,695</div> <div class="buyNow" data-item-widget-name="top gadgets" data-item-product-name="fastrack revoltt fs1" data-item-target-url="tech.hindustantimes.com/smart-watches/fastrack-revoltt-fs1-price-in-india-P0000155407" data-item-product-position="4" data-item-tracking-id="NA" data-item-marketplace="NA" data-item-product-type="Smart Watches" data-item-tab-name="latest" data-item-product-id="NA" data-item-event="product_card_click" data-item-page-name="bookmark page" data-item-widget-element="check details" onclick="sendGA4Events(this);window.open('/smart-watches/fastrack-revoltt-fs1-price-in-india-P0000155407', '_self');">Check Details</div> </div> </div> </div> <a href="/smart-watches/latest-smart-watches" class="viewAllBtn" data-before='View'> Latest Smart Watches <img src="/img/revamp/images/view-all-icon.png" width="13" height="12" loading="lazy" /> </a> </div> <div id="SmartWatches_upcoming" class="topGadgetsBox" > <div class="sliderWrapper scrollView"> <div class="sliderBox" wposition="1" wtype="horizontal-widget" data-widget="Widget-Top-Smart Watches-upcoming" category="Smart Watches" productn="Boat Watch Mystiq" metaurl="/smart-watches/boat-watch-mystiq-price-in-india-P0000148320" affiliate="null" data-price="2999" pagetype="savedArticle_Page"> <div class="parentWrapper"> <div class="imgWrapper"> <span class="fourRatioThree"></span> <img data-src="https://images.hindustantimes.com/tech/htmobile4/P148320/heroimage/boat-watch-mystiq-148320-large-1.jpg" class="lazyload" /> </div> <a class="title" href="/smart-watches/boat-watch-mystiq-price-in-india-P0000148320" data-item-widget-name="top gadgets" data-item-product-name="boat watch mystiq" data-item-target-url="tech.hindustantimes.com/smart-watches/boat-watch-mystiq-price-in-india-P0000148320" data-item-product-position="1" data-item-tracking-id="NA" data-item-marketplace="NA" data-item-product-type="Smart Watches" data-item-tab-name="upcoming" data-item-event="product_card_click" data-item-page-name="bookmark page" data-item-widget-element="title" data-item-product-id="NA" class="parentWrapper" onclick="sendGA4Events(this);" ><h3 class="title"> Boat Watch Mystiq</h3></a> <div class="description"> 1.57 Inch Inch | Water proof | Fitness Tracking</div> </div> <div class="sliderFooter"> <div class="priceText"> ₹ 2,999</div> <div class="buyNow" data-item-widget-name="top gadgets" data-item-product-name="boat watch mystiq" data-item-target-url="tech.hindustantimes.com/smart-watches/boat-watch-mystiq-price-in-india-P0000148320" data-item-product-position="1" data-item-tracking-id="NA" data-item-marketplace="NA" data-item-product-type="Smart Watches" data-item-tab-name="upcoming" data-item-product-id="NA" data-item-event="product_card_click" data-item-page-name="bookmark page" data-item-widget-element="check details" onclick="sendGA4Events(this);window.open('/smart-watches/boat-watch-mystiq-price-in-india-P0000148320', '_self');">Check Details</div> </div> </div> <div class="sliderBox" wposition="1" wtype="horizontal-widget" data-widget="Widget-Top-Smart Watches-upcoming" category="Smart Watches" productn="Xiaomi Redmi Watch 4" metaurl="/smart-watches/xiaomi-redmi-watch-4-price-in-india-P0000159788" affiliate="null" data-price="5957" pagetype="savedArticle_Page"> <div class="parentWrapper"> <div class="imgWrapper"> <span class="fourRatioThree"></span> <img data-src="https://images.hindustantimes.com/tech/htmobile4/P159788/heroimage/xiaomi-redmi-watch-4-159788-large-1.jpg" class="lazyload" /> </div> <a class="title" href="/smart-watches/xiaomi-redmi-watch-4-price-in-india-P0000159788" data-item-widget-name="top gadgets" data-item-product-name="xiaomi redmi watch 4" data-item-target-url="tech.hindustantimes.com/smart-watches/xiaomi-redmi-watch-4-price-in-india-P0000159788" data-item-product-position="2" data-item-tracking-id="NA" data-item-marketplace="NA" data-item-product-type="Smart Watches" data-item-tab-name="upcoming" data-item-event="product_card_click" data-item-page-name="bookmark page" data-item-widget-element="title" data-item-product-id="NA" class="parentWrapper" onclick="sendGA4Events(this);" ><h3 class="title"> Xiaomi Redmi Watch 4</h3></a> <div class="description"> AMOLED Display | Water proof | Receive call | Fitness Tracking</div> </div> <div class="sliderFooter"> <div class="priceText"> ₹ 5,957</div> <div class="buyNow" data-item-widget-name="top gadgets" data-item-product-name="xiaomi redmi watch 4" data-item-target-url="tech.hindustantimes.com/smart-watches/xiaomi-redmi-watch-4-price-in-india-P0000159788" data-item-product-position="2" data-item-tracking-id="NA" data-item-marketplace="NA" data-item-product-type="Smart Watches" data-item-tab-name="upcoming" data-item-product-id="NA" data-item-event="product_card_click" data-item-page-name="bookmark page" data-item-widget-element="check details" onclick="sendGA4Events(this);window.open('/smart-watches/xiaomi-redmi-watch-4-price-in-india-P0000159788', '_self');">Check Details</div> </div> </div> <div class="sliderBox" wposition="1" wtype="horizontal-widget" data-widget="Widget-Top-Smart Watches-upcoming" category="Smart Watches" productn="Fossil Q Machine Hybrid" metaurl="/smart-watches/fossil-q-machine-hybrid-price-in-india-P0000142480" affiliate="null" data-price="6995" pagetype="savedArticle_Page"> <div class="parentWrapper"> <div class="imgWrapper"> <span class="fourRatioThree"></span> <img data-src="https://images.hindustantimes.com/tech/htmobile4/P142480/heroimage/fossil-q-machine-hybrid-142480-large-1.jpg" class="lazyload" /> </div> <a class="title" href="/smart-watches/fossil-q-machine-hybrid-price-in-india-P0000142480" data-item-widget-name="top gadgets" data-item-product-name="fossil q machine hybrid" data-item-target-url="tech.hindustantimes.com/smart-watches/fossil-q-machine-hybrid-price-in-india-P0000142480" data-item-product-position="3" data-item-tracking-id="NA" data-item-marketplace="NA" data-item-product-type="Smart Watches" data-item-tab-name="upcoming" data-item-event="product_card_click" data-item-page-name="bookmark page" data-item-widget-element="title" data-item-product-id="NA" class="parentWrapper" onclick="sendGA4Events(this);" ><h3 class="title"> Fossil Q Machine Hybrid</h3></a> <div class="description"> Water proof | Fitness Tracking</div> </div> <div class="sliderFooter"> <div class="priceText"> ₹ 6,995</div> <div class="buyNow" data-item-widget-name="top gadgets" data-item-product-name="fossil q machine hybrid" data-item-target-url="tech.hindustantimes.com/smart-watches/fossil-q-machine-hybrid-price-in-india-P0000142480" data-item-product-position="3" data-item-tracking-id="NA" data-item-marketplace="NA" data-item-product-type="Smart Watches" data-item-tab-name="upcoming" data-item-product-id="NA" data-item-event="product_card_click" data-item-page-name="bookmark page" data-item-widget-element="check details" onclick="sendGA4Events(this);window.open('/smart-watches/fossil-q-machine-hybrid-price-in-india-P0000142480', '_self');">Check Details</div> </div> </div> <div class="sliderBox" wposition="1" wtype="horizontal-widget" data-widget="Widget-Top-Smart Watches-upcoming" category="Smart Watches" productn="Fire-Boltt Thunder" metaurl="/smart-watches/fire-boltt-thunder-price-in-india-P0000149554" affiliate="null" data-price="2899" pagetype="savedArticle_Page"> <div class="parentWrapper"> <div class="imgWrapper"> <span class="fourRatioThree"></span> <img data-src="https://images.hindustantimes.com/tech/htmobile4/P149554/heroimage/fire-boltt-thunder-149554-large-1.jpg" class="lazyload" /> </div> <a class="title" href="/smart-watches/fire-boltt-thunder-price-in-india-P0000149554" data-item-widget-name="top gadgets" data-item-product-name="fire boltt thunder" data-item-target-url="tech.hindustantimes.com/smart-watches/fire-boltt-thunder-price-in-india-P0000149554" data-item-product-position="4" data-item-tracking-id="NA" data-item-marketplace="NA" data-item-product-type="Smart Watches" data-item-tab-name="upcoming" data-item-event="product_card_click" data-item-page-name="bookmark page" data-item-widget-element="title" data-item-product-id="NA" class="parentWrapper" onclick="sendGA4Events(this);" ><h3 class="title"> Fire Boltt Thunder</h3></a> <div class="description"> AMOLED Display | 1.32 Inch | Receive call | Fitness Tracking</div> </div> <div class="sliderFooter"> <div class="priceText"> ₹ 2,899</div> <div class="buyNow" data-item-widget-name="top gadgets" data-item-product-name="fire-boltt thunder" data-item-target-url="tech.hindustantimes.com/smart-watches/fire-boltt-thunder-price-in-india-P0000149554" data-item-product-position="4" data-item-tracking-id="NA" data-item-marketplace="NA" data-item-product-type="Smart Watches" data-item-tab-name="upcoming" data-item-product-id="NA" data-item-event="product_card_click" data-item-page-name="bookmark page" data-item-widget-element="check details" onclick="sendGA4Events(this);window.open('/smart-watches/fire-boltt-thunder-price-in-india-P0000149554', '_self');">Check Details</div> </div> </div> </div> <a href="/smart-watches/upcoming-smart-watches" class="viewAllBtn" data-before='View'> Upcoming Smart Watches <img src="/img/revamp/images/view-all-icon.png" width="13" height="12" loading="lazy" /> </a> </div> </div> <div class="scrollArea topGadgetsBoxWrapper" id="FitnessBands" > <span class="leftArrow" style="display: none;"><img src="https://images.hindustantimes.com/tech/static/revamp/images/png/slider-arrow-right-white-bg.png" width="48" height="48" loading="lazy"/></span> <span class="rightArrow"><img src="https://images.hindustantimes.com/tech/static/revamp/images/png/slider-arrow-right-white-bg.png" width="48" height="48" loading="lazy"/></span> <div id="FitnessBands_popular" class="topGadgetsBox" > <div class="sliderWrapper scrollView"> <div class="sliderBox" wposition="1" wtype="horizontal-widget" data-widget="Widget-Top-Fitness Bands-popular" category="Fitness Bands" productn="Honor Band 6" metaurl="/fitness-bands/honor-band-6-price-in-india-P0000140997" affiliate="null" data-price="4490" pagetype="savedArticle_Page"> <div class="parentWrapper"> <div class="imgWrapper"> <span class="fourRatioThree"></span> <img data-src="https://images.hindustantimes.com/tech/htmobile4/P140997/heroimage/honor-band-6-140997-large-1.jpg" class="lazyload" /> </div> <a class="title" href="/fitness-bands/honor-band-6-price-in-india-P0000140997" data-item-widget-name="top gadgets" data-item-product-name="honor band 6" data-item-target-url="tech.hindustantimes.com/fitness-bands/honor-band-6-price-in-india-P0000140997" data-item-product-position="1" data-item-tracking-id="NA" data-item-marketplace="NA" data-item-product-type="Fitness Bands" data-item-tab-name="popular" data-item-event="product_card_click" data-item-page-name="bookmark page" data-item-widget-element="title" data-item-product-id="NA" class="parentWrapper" onclick="sendGA4Events(this);" ><h3 class="title"> Honor Band 6</h3></a> <div class="description"> AMOLED Display | Water Resistant | Steps | Heart Rate | Active Minutes</div> </div> <div class="sliderFooter"> <div class="priceText"> ₹ 4,490</div> <div class="buyNow" data-item-widget-name="top gadgets" data-item-product-name="honor band 6" data-item-target-url="tech.hindustantimes.com/fitness-bands/honor-band-6-price-in-india-P0000140997" data-item-product-position="1" data-item-tracking-id="NA" data-item-marketplace="NA" data-item-product-type="Fitness Bands" data-item-tab-name="popular" data-item-product-id="NA" data-item-event="product_card_click" data-item-page-name="bookmark page" data-item-widget-element="check details" onclick="sendGA4Events(this);window.open('/fitness-bands/honor-band-6-price-in-india-P0000140997', '_self');">Check Details</div> </div> </div> <div class="sliderBox" wposition="1" wtype="horizontal-widget" data-widget="Widget-Top-Fitness Bands-popular" category="Fitness Bands" productn="Amazfit Band 7" metaurl="/fitness-bands/amazfit-band-7-price-in-india-P0000152001" affiliate="null" data-price="3499" pagetype="savedArticle_Page"> <div class="parentWrapper"> <div class="imgWrapper"> <span class="fourRatioThree"></span> <img data-src="https://images.hindustantimes.com/tech/htmobile4/P152001/heroimage/amazfit-band-7-152001-large-1.jpg" class="lazyload" /> </div> <a class="title" href="/fitness-bands/amazfit-band-7-price-in-india-P0000152001" data-item-widget-name="top gadgets" data-item-product-name="amazfit band 7" data-item-target-url="tech.hindustantimes.com/fitness-bands/amazfit-band-7-price-in-india-P0000152001" data-item-product-position="2" data-item-tracking-id="NA" data-item-marketplace="NA" data-item-product-type="Fitness Bands" data-item-tab-name="popular" data-item-event="product_card_click" data-item-page-name="bookmark page" data-item-widget-element="title" data-item-product-id="NA" class="parentWrapper" onclick="sendGA4Events(this);" ><h3 class="title"> Amazfit Band 7</h3></a> <div class="description"> Water Resistant | Steps | Heart Rate | Hours Slept | Active Minutes</div> </div> <div class="sliderFooter"> <div class="priceText"> ₹ 3,499</div> <div class="buyNow" data-item-widget-name="top gadgets" data-item-product-name="amazfit band 7" data-item-target-url="tech.hindustantimes.com/fitness-bands/amazfit-band-7-price-in-india-P0000152001" data-item-product-position="2" data-item-tracking-id="NA" data-item-marketplace="NA" data-item-product-type="Fitness Bands" data-item-tab-name="popular" data-item-product-id="NA" data-item-event="product_card_click" data-item-page-name="bookmark page" data-item-widget-element="check details" onclick="sendGA4Events(this);window.open('/fitness-bands/amazfit-band-7-price-in-india-P0000152001', '_self');">Check Details</div> </div> </div> <div class="sliderBox" wposition="1" wtype="horizontal-widget" data-widget="Widget-Top-Fitness Bands-popular" category="Fitness Bands" productn="Fitbit Inspire 3" metaurl="/fitness-bands/fitbit-inspire-3-price-in-india-P0000152414" affiliate="null" data-price="8999" pagetype="savedArticle_Page"> <div class="parentWrapper"> <div class="imgWrapper"> <span class="fourRatioThree"></span> <img data-src="https://images.hindustantimes.com/tech/htmobile4/P152414/heroimage/fitbit-inspire-3-152414-large-1.jpg" class="lazyload" /> </div> <a class="title" href="/fitness-bands/fitbit-inspire-3-price-in-india-P0000152414" data-item-widget-name="top gadgets" data-item-product-name="fitbit inspire 3" data-item-target-url="tech.hindustantimes.com/fitness-bands/fitbit-inspire-3-price-in-india-P0000152414" data-item-product-position="3" data-item-tracking-id="NA" data-item-marketplace="NA" data-item-product-type="Fitness Bands" data-item-tab-name="popular" data-item-event="product_card_click" data-item-page-name="bookmark page" data-item-widget-element="title" data-item-product-id="NA" class="parentWrapper" onclick="sendGA4Events(this);" ><h3 class="title"> Fitbit Inspire 3</h3></a> <div class="description"> AMOLED Display | Steps | Heart Rate | Hours Slept | Active Minutes</div> </div> <div class="sliderFooter"> <div class="priceText"> ₹ 8,999</div> <div class="buyNow" data-item-widget-name="top gadgets" data-item-product-name="fitbit inspire 3" data-item-target-url="tech.hindustantimes.com/fitness-bands/fitbit-inspire-3-price-in-india-P0000152414" data-item-product-position="3" data-item-tracking-id="NA" data-item-marketplace="NA" data-item-product-type="Fitness Bands" data-item-tab-name="popular" data-item-product-id="NA" data-item-event="product_card_click" data-item-page-name="bookmark page" data-item-widget-element="check details" onclick="sendGA4Events(this);window.open('/fitness-bands/fitbit-inspire-3-price-in-india-P0000152414', '_self');">Check Details</div> </div> </div> <div class="sliderBox" wposition="1" wtype="horizontal-widget" data-widget="Widget-Top-Fitness Bands-popular" category="Fitness Bands" productn="Fitbit Charge 4" metaurl="/fitness-bands/fitbit-charge-4-price-in-india-P0000138301" affiliate="null" data-price="9359" pagetype="savedArticle_Page"> <div class="parentWrapper"> <div class="imgWrapper"> <span class="fourRatioThree"></span> <img data-src="https://images.hindustantimes.com/tech/htmobile4/P138301/heroimage/fitbit-charge-4-138301-large-1.jpg" class="lazyload" /> </div> <a class="title" href="/fitness-bands/fitbit-charge-4-price-in-india-P0000138301" data-item-widget-name="top gadgets" data-item-product-name="fitbit charge 4" data-item-target-url="tech.hindustantimes.com/fitness-bands/fitbit-charge-4-price-in-india-P0000138301" data-item-product-position="4" data-item-tracking-id="NA" data-item-marketplace="NA" data-item-product-type="Fitness Bands" data-item-tab-name="popular" data-item-event="product_card_click" data-item-page-name="bookmark page" data-item-widget-element="title" data-item-product-id="NA" class="parentWrapper" onclick="sendGA4Events(this);" ><h3 class="title"> Fitbit Charge 4</h3></a> <div class="description"> Water Resistant | Steps | Heart Rate | Hours Slept | Active Minutes</div> </div> <div class="sliderFooter"> <div class="priceText"> ₹ 9,359</div> <div class="buyNow" data-item-widget-name="top gadgets" data-item-product-name="fitbit charge 4" data-item-target-url="tech.hindustantimes.com/fitness-bands/fitbit-charge-4-price-in-india-P0000138301" data-item-product-position="4" data-item-tracking-id="NA" data-item-marketplace="NA" data-item-product-type="Fitness Bands" data-item-tab-name="popular" data-item-product-id="NA" data-item-event="product_card_click" data-item-page-name="bookmark page" data-item-widget-element="check details" onclick="sendGA4Events(this);window.open('/fitness-bands/fitbit-charge-4-price-in-india-P0000138301', '_self');">Check Details</div> </div> </div> </div> <a href="/fitness-bands/popular-fitness-bands" class="viewAllBtn" data-before='View'> Popular Fitness Bands <img src="/img/revamp/images/view-all-icon.png" width="13" height="12" loading="lazy" /> </a> </div> <div id="FitnessBands_latest" class="topGadgetsBox" > <div class="sliderWrapper scrollView"> <div class="sliderBox" wposition="1" wtype="horizontal-widget" data-widget="Widget-Top-Fitness Bands-latest" category="Fitness Bands" productn="Fastrack Reflex 3.0" metaurl="/fitness-bands/fastrack-reflex-3-0-price-in-india-P0000142647" affiliate="null" data-price="2295" pagetype="savedArticle_Page"> <div class="parentWrapper"> <div class="imgWrapper"> <span class="fourRatioThree"></span> <img data-src="https://images.hindustantimes.com/tech/htmobile4/P142647/heroimage/fastrack-reflex-3-0-142647-large-1.jpg" class="lazyload" /> </div> <a class="title" href="/fitness-bands/fastrack-reflex-3-0-price-in-india-P0000142647" data-item-widget-name="top gadgets" data-item-product-name="fastrack reflex 3 0" data-item-target-url="tech.hindustantimes.com/fitness-bands/fastrack-reflex-3-0-price-in-india-P0000142647" data-item-product-position="1" data-item-tracking-id="NA" data-item-marketplace="NA" data-item-product-type="Fitness Bands" data-item-tab-name="latest" data-item-event="product_card_click" data-item-page-name="bookmark page" data-item-widget-element="title" data-item-product-id="NA" class="parentWrapper" onclick="sendGA4Events(this);" ><h3 class="title"> Fastrack Reflex 3 0</h3></a> <div class="description"> Water Resistant | Steps | Heart Rate</div> </div> <div class="sliderFooter"> <div class="priceText"> ₹ 2,295</div> <div class="buyNow" data-item-widget-name="top gadgets" data-item-product-name="fastrack reflex 3.0" data-item-target-url="tech.hindustantimes.com/fitness-bands/fastrack-reflex-3-0-price-in-india-P0000142647" data-item-product-position="1" data-item-tracking-id="NA" data-item-marketplace="NA" data-item-product-type="Fitness Bands" data-item-tab-name="latest" data-item-product-id="NA" data-item-event="product_card_click" data-item-page-name="bookmark page" data-item-widget-element="check details" onclick="sendGA4Events(this);window.open('/fitness-bands/fastrack-reflex-3-0-price-in-india-P0000142647', '_self');">Check Details</div> </div> </div> <div class="sliderBox" wposition="1" wtype="horizontal-widget" data-widget="Widget-Top-Fitness Bands-latest" category="Fitness Bands" productn="Fitbit Charge" metaurl="/fitness-bands/fitbit-charge-price-in-india-P0000150964" affiliate="null" data-price="25687" pagetype="savedArticle_Page"> <div class="parentWrapper"> <div class="imgWrapper"> <span class="fourRatioThree"></span> <img data-src="https://images.hindustantimes.com/tech/htmobile4/P74910/heroimage/fitbit-charge-74910-large-1.jpg" class="lazyload" /> </div> <a class="title" href="/fitness-bands/fitbit-charge-price-in-india-P0000150964" data-item-widget-name="top gadgets" data-item-product-name="fitbit charge" data-item-target-url="tech.hindustantimes.com/fitness-bands/fitbit-charge-price-in-india-P0000150964" data-item-product-position="2" data-item-tracking-id="NA" data-item-marketplace="NA" data-item-product-type="Fitness Bands" data-item-tab-name="latest" data-item-event="product_card_click" data-item-page-name="bookmark page" data-item-widget-element="title" data-item-product-id="NA" class="parentWrapper" onclick="sendGA4Events(this);" ><h3 class="title"> Fitbit Charge</h3></a> <div class="description"> OLED Display | Water Resistant | Steps | Hours Slept | Active Minutes</div> </div> <div class="sliderFooter"> <div class="priceText"> ₹ 25,687</div> <div class="buyNow" data-item-widget-name="top gadgets" data-item-product-name="fitbit charge" data-item-target-url="tech.hindustantimes.com/fitness-bands/fitbit-charge-price-in-india-P0000150964" data-item-product-position="2" data-item-tracking-id="NA" data-item-marketplace="NA" data-item-product-type="Fitness Bands" data-item-tab-name="latest" data-item-product-id="NA" data-item-event="product_card_click" data-item-page-name="bookmark page" data-item-widget-element="check details" onclick="sendGA4Events(this);window.open('/fitness-bands/fitbit-charge-price-in-india-P0000150964', '_self');">Check Details</div> </div> </div> <div class="sliderBox" wposition="1" wtype="horizontal-widget" data-widget="Widget-Top-Fitness Bands-latest" category="Fitness Bands" productn="Lava BeFIT" metaurl="/fitness-bands/lava-befit-price-in-india-P0000142111" affiliate="null" data-price="2299" pagetype="savedArticle_Page"> <div class="parentWrapper"> <div class="imgWrapper"> <span class="fourRatioThree"></span> <img data-src="https://images.hindustantimes.com/tech/htmobile4/P142111/heroimage/lava-befit-142111-large-1.jpg" class="lazyload" /> </div> <a class="title" href="/fitness-bands/lava-befit-price-in-india-P0000142111" data-item-widget-name="top gadgets" data-item-product-name="lava befit" data-item-target-url="tech.hindustantimes.com/fitness-bands/lava-befit-price-in-india-P0000142111" data-item-product-position="3" data-item-tracking-id="NA" data-item-marketplace="NA" data-item-product-type="Fitness Bands" data-item-tab-name="latest" data-item-event="product_card_click" data-item-page-name="bookmark page" data-item-widget-element="title" data-item-product-id="NA" class="parentWrapper" onclick="sendGA4Events(this);" ><h3 class="title"> Lava BeFIT</h3></a> <div class="description"> LCD Display | Water Resistant | Steps | Heart Rate</div> </div> <div class="sliderFooter"> <div class="priceText"> ₹ 2,299</div> <div class="buyNow" data-item-widget-name="top gadgets" data-item-product-name="lava befit" data-item-target-url="tech.hindustantimes.com/fitness-bands/lava-befit-price-in-india-P0000142111" data-item-product-position="3" data-item-tracking-id="NA" data-item-marketplace="NA" data-item-product-type="Fitness Bands" data-item-tab-name="latest" data-item-product-id="NA" data-item-event="product_card_click" data-item-page-name="bookmark page" data-item-widget-element="check details" onclick="sendGA4Events(this);window.open('/fitness-bands/lava-befit-price-in-india-P0000142111', '_self');">Check Details</div> </div> </div> <div class="sliderBox" wposition="1" wtype="horizontal-widget" data-widget="Widget-Top-Fitness Bands-latest" category="Fitness Bands" productn="Amazfit Band 7" metaurl="/fitness-bands/amazfit-band-7-price-in-india-P0000152001" affiliate="null" data-price="3499" pagetype="savedArticle_Page"> <div class="parentWrapper"> <div class="imgWrapper"> <span class="fourRatioThree"></span> <img data-src="https://images.hindustantimes.com/tech/htmobile4/P152001/heroimage/amazfit-band-7-152001-large-1.jpg" class="lazyload" /> </div> <a class="title" href="/fitness-bands/amazfit-band-7-price-in-india-P0000152001" data-item-widget-name="top gadgets" data-item-product-name="amazfit band 7" data-item-target-url="tech.hindustantimes.com/fitness-bands/amazfit-band-7-price-in-india-P0000152001" data-item-product-position="4" data-item-tracking-id="NA" data-item-marketplace="NA" data-item-product-type="Fitness Bands" data-item-tab-name="latest" data-item-event="product_card_click" data-item-page-name="bookmark page" data-item-widget-element="title" data-item-product-id="NA" class="parentWrapper" onclick="sendGA4Events(this);" ><h3 class="title"> Amazfit Band 7</h3></a> <div class="description"> Water Resistant | Steps | Heart Rate | Hours Slept | Active Minutes</div> </div> <div class="sliderFooter"> <div class="priceText"> ₹ 3,499</div> <div class="buyNow" data-item-widget-name="top gadgets" data-item-product-name="amazfit band 7" data-item-target-url="tech.hindustantimes.com/fitness-bands/amazfit-band-7-price-in-india-P0000152001" data-item-product-position="4" data-item-tracking-id="NA" data-item-marketplace="NA" data-item-product-type="Fitness Bands" data-item-tab-name="latest" data-item-product-id="NA" data-item-event="product_card_click" data-item-page-name="bookmark page" data-item-widget-element="check details" onclick="sendGA4Events(this);window.open('/fitness-bands/amazfit-band-7-price-in-india-P0000152001', '_self');">Check Details</div> </div> </div> </div> <a href="/fitness-bands/latest-fitness-bands" class="viewAllBtn" data-before='View'> Latest Fitness Bands <img src="/img/revamp/images/view-all-icon.png" width="13" height="12" loading="lazy" /> </a> </div> <div id="FitnessBands_upcoming" class="topGadgetsBox" > <div class="sliderWrapper scrollView"> <div class="sliderBox" wposition="1" wtype="horizontal-widget" data-widget="Widget-Top-Fitness Bands-upcoming" category="Fitness Bands" productn="Sonata SF Rush SWD77087PP01" metaurl="/fitness-bands/sonata-sf-rush-swd77087pp01-price-in-india-P0000144085" affiliate="null" data-price="899" pagetype="savedArticle_Page"> <div class="parentWrapper"> <div class="imgWrapper"> <span class="fourRatioThree"></span> <img data-src="https://images.hindustantimes.com/tech/htmobile4/P144085/heroimage/sonata-sf-rush-swd77087pp01-144085-large-1.jpg" class="lazyload" /> </div> <a class="title" href="/fitness-bands/sonata-sf-rush-swd77087pp01-price-in-india-P0000144085" data-item-widget-name="top gadgets" data-item-product-name="sonata sf rush swd77087pp01" data-item-target-url="tech.hindustantimes.com/fitness-bands/sonata-sf-rush-swd77087pp01-price-in-india-P0000144085" data-item-product-position="1" data-item-tracking-id="NA" data-item-marketplace="NA" data-item-product-type="Fitness Bands" data-item-tab-name="upcoming" data-item-event="product_card_click" data-item-page-name="bookmark page" data-item-widget-element="title" data-item-product-id="NA" class="parentWrapper" onclick="sendGA4Events(this);" ><h3 class="title"> Sonata SF Rush SWD77087PP01</h3></a> <div class="description"> OLED Display | Water Resistant | Steps</div> </div> <div class="sliderFooter"> <div class="priceText"> ₹ 899</div> <div class="buyNow" data-item-widget-name="top gadgets" data-item-product-name="sonata sf rush swd77087pp01" data-item-target-url="tech.hindustantimes.com/fitness-bands/sonata-sf-rush-swd77087pp01-price-in-india-P0000144085" data-item-product-position="1" data-item-tracking-id="NA" data-item-marketplace="NA" data-item-product-type="Fitness Bands" data-item-tab-name="upcoming" data-item-product-id="NA" data-item-event="product_card_click" data-item-page-name="bookmark page" data-item-widget-element="check details" onclick="sendGA4Events(this);window.open('/fitness-bands/sonata-sf-rush-swd77087pp01-price-in-india-P0000144085', '_self');">Check Details</div> </div> </div> <div class="sliderBox" wposition="1" wtype="horizontal-widget" data-widget="Widget-Top-Fitness Bands-upcoming" category="Fitness Bands" productn="Playgo Playfit 53" metaurl="/fitness-bands/playgo-playfit-53-price-in-india-P0000148310" affiliate="null" data-price="3499" pagetype="savedArticle_Page"> <div class="parentWrapper"> <div class="imgWrapper"> <span class="fourRatioThree"></span> <img data-src="https://images.hindustantimes.com/tech/htmobile4/P148310/heroimage/playgo-playfit-53-148310-large-1.jpg" class="lazyload" /> </div> <a class="title" href="/fitness-bands/playgo-playfit-53-price-in-india-P0000148310" data-item-widget-name="top gadgets" data-item-product-name="playgo playfit 53" data-item-target-url="tech.hindustantimes.com/fitness-bands/playgo-playfit-53-price-in-india-P0000148310" data-item-product-position="2" data-item-tracking-id="NA" data-item-marketplace="NA" data-item-product-type="Fitness Bands" data-item-tab-name="upcoming" data-item-event="product_card_click" data-item-page-name="bookmark page" data-item-widget-element="title" data-item-product-id="NA" class="parentWrapper" onclick="sendGA4Events(this);" ><h3 class="title"> Playgo Playfit 53</h3></a> <div class="description"> TFT LCD Display | Water Resistant | Steps | Heart Rate | Hours Slept</div> </div> <div class="sliderFooter"> <div class="priceText"> ₹ 3,499</div> <div class="buyNow" data-item-widget-name="top gadgets" data-item-product-name="playgo playfit 53" data-item-target-url="tech.hindustantimes.com/fitness-bands/playgo-playfit-53-price-in-india-P0000148310" data-item-product-position="2" data-item-tracking-id="NA" data-item-marketplace="NA" data-item-product-type="Fitness Bands" data-item-tab-name="upcoming" data-item-product-id="NA" data-item-event="product_card_click" data-item-page-name="bookmark page" data-item-widget-element="check details" onclick="sendGA4Events(this);window.open('/fitness-bands/playgo-playfit-53-price-in-india-P0000148310', '_self');">Check Details</div> </div> </div> <div class="sliderBox" wposition="1" wtype="horizontal-widget" data-widget="Widget-Top-Fitness Bands-upcoming" category="Fitness Bands" productn="Pebble Kardio Plus" metaurl="/fitness-bands/pebble-kardio-plus-price-in-india-P0000148666" affiliate="null" data-price="1199" pagetype="savedArticle_Page"> <div class="parentWrapper"> <div class="imgWrapper"> <span class="fourRatioThree"></span> <img data-src="https://images.hindustantimes.com/tech/htmobile4/P148666/heroimage/pebble-kardio-plus-148666-large-1.jpg" class="lazyload" /> </div> <a class="title" href="/fitness-bands/pebble-kardio-plus-price-in-india-P0000148666" data-item-widget-name="top gadgets" data-item-product-name="pebble kardio plus" data-item-target-url="tech.hindustantimes.com/fitness-bands/pebble-kardio-plus-price-in-india-P0000148666" data-item-product-position="3" data-item-tracking-id="NA" data-item-marketplace="NA" data-item-product-type="Fitness Bands" data-item-tab-name="upcoming" data-item-event="product_card_click" data-item-page-name="bookmark page" data-item-widget-element="title" data-item-product-id="NA" class="parentWrapper" onclick="sendGA4Events(this);" ><h3 class="title"> Pebble Kardio Plus</h3></a> <div class="description"> OLED Display | Steps | Heart Rate</div> </div> <div class="sliderFooter"> <div class="priceText"> ₹ 1,199</div> <div class="buyNow" data-item-widget-name="top gadgets" data-item-product-name="pebble kardio plus" data-item-target-url="tech.hindustantimes.com/fitness-bands/pebble-kardio-plus-price-in-india-P0000148666" data-item-product-position="3" data-item-tracking-id="NA" data-item-marketplace="NA" data-item-product-type="Fitness Bands" data-item-tab-name="upcoming" data-item-product-id="NA" data-item-event="product_card_click" data-item-page-name="bookmark page" data-item-widget-element="check details" onclick="sendGA4Events(this);window.open('/fitness-bands/pebble-kardio-plus-price-in-india-P0000148666', '_self');">Check Details</div> </div> </div> <div class="sliderBox" wposition="1" wtype="horizontal-widget" data-widget="Widget-Top-Fitness Bands-upcoming" category="Fitness Bands" productn="Zebronics ZEB-FIT850CH" metaurl="/fitness-bands/zebronics-zeb-fit850ch-price-in-india-P0000148499" affiliate="null" data-price="2999" pagetype="savedArticle_Page"> <div class="parentWrapper"> <div class="imgWrapper"> <span class="fourRatioThree"></span> <img data-src="https://images.hindustantimes.com/tech/htmobile4/P148499/heroimage/zebronics-zeb-fit850ch-148499-large-1.jpg" class="lazyload" /> </div> <a class="title" href="/fitness-bands/zebronics-zeb-fit850ch-price-in-india-P0000148499" data-item-widget-name="top gadgets" data-item-product-name="zebronics zeb fit850ch" data-item-target-url="tech.hindustantimes.com/fitness-bands/zebronics-zeb-fit850ch-price-in-india-P0000148499" data-item-product-position="4" data-item-tracking-id="NA" data-item-marketplace="NA" data-item-product-type="Fitness Bands" data-item-tab-name="upcoming" data-item-event="product_card_click" data-item-page-name="bookmark page" data-item-widget-element="title" data-item-product-id="NA" class="parentWrapper" onclick="sendGA4Events(this);" ><h3 class="title"> Zebronics ZEB FIT850CH</h3></a> <div class="description"> TFT LCD Display | Water Resistant | Steps | Heart Rate</div> </div> <div class="sliderFooter"> <div class="priceText"> ₹ 2,999</div> <div class="buyNow" data-item-widget-name="top gadgets" data-item-product-name="zebronics zeb-fit850ch" data-item-target-url="tech.hindustantimes.com/fitness-bands/zebronics-zeb-fit850ch-price-in-india-P0000148499" data-item-product-position="4" data-item-tracking-id="NA" data-item-marketplace="NA" data-item-product-type="Fitness Bands" data-item-tab-name="upcoming" data-item-product-id="NA" data-item-event="product_card_click" data-item-page-name="bookmark page" data-item-widget-element="check details" onclick="sendGA4Events(this);window.open('/fitness-bands/zebronics-zeb-fit850ch-price-in-india-P0000148499', '_self');">Check Details</div> </div> </div> </div> <a href="/fitness-bands/upcoming-fitness-bands" class="viewAllBtn" data-before='View'> Upcoming Fitness Bands <img src="/img/revamp/images/view-all-icon.png" width="13" height="12" loading="lazy" /> </a> </div> </div> </div> </section> <section class="gadgetsSearch allProductsAvailable"> <div class="sectionTitle inMiddle"><h2 class='heading'>Gadgets Search</h2><div class="boxTabs"><span class="active" data-current="Mobile">Mobiles</span><span data-current="Tablet">Tablets</span><span data-current="Laptop">Laptops</span><span data-current="SmartWatches">Smart Watches</span><span data-current="FitnessBands">Fitness Bands</span></div></div> <div class="tabLinksWrapper"><a href="javascript:void(0);" data-current="brand" class="active">Brands</a><a href="javascript:void(0);" data-current="budget">Budget</a><a href="javascript:void(0);" data-current="feature">Features</a></div> <div id="gadgetsSearch"> <div id="Mobile_gadgetSearch" class="gadgetsSearchWrapper"> <div id="Mobile_brand_gadgetSearch" class="searchGadgetsBox"> <div class="logosWrapper gadgetsSearchBox"> <div class="logosBox" > <div class="logoBoxInner"> <div class="logoImage 11"> <img data-src="https://images.hindustantimes.com/tech/img/logos/apple.png" src="" class="lazyload" alt="apple" onclick="window.open('/mobile-finder/apple','_self');" onmousedown="ga('send','event','Widget-Mobile-Search-Brand','Apple_0','/mobile-finder/apple',{'dimension7':'savedArticle_Page','dimension8':'0'})"> </div> <div class="logoName"> <a href="/mobile-finder/apple"> <h3 class="title">Apple</h3> </a> </div> </div> </div> <div class="logosBox" > <div class="logoBoxInner"> <div class="logoImage 11"> <img data-src="https://images.hindustantimes.com/tech/img/logos/samsung.png" src="" class="lazyload" alt="samsung" onclick="window.open('/mobile-finder/samsung','_self');" onmousedown="ga('send','event','Widget-Mobile-Search-Brand','Samsung_1','/mobile-finder/samsung',{'dimension7':'savedArticle_Page','dimension8':'1'})"> </div> <div class="logoName"> <a href="/mobile-finder/samsung"> <h3 class="title">Samsung</h3> </a> </div> </div> </div> <div class="logosBox" > <div class="logoBoxInner"> <div class="logoImage 11"> <img data-src="https://images.hindustantimes.com/tech/img/logos/xiaomi.png" src="" class="lazyload" alt="xiaomi" onclick="window.open('/mobile-finder/xiaomi','_self');" onmousedown="ga('send','event','Widget-Mobile-Search-Brand','Xiaomi_2','/mobile-finder/xiaomi',{'dimension7':'savedArticle_Page','dimension8':'2'})"> </div> <div class="logoName"> <a href="/mobile-finder/xiaomi"> <h3 class="title">Xiaomi</h3> </a> </div> </div> </div> <div class="logosBox" > <div class="logoBoxInner"> <div class="logoImage 11"> <img data-src="https://images.hindustantimes.com/tech/img/logos/oppo.png" src="" class="lazyload" alt="oppo" onclick="window.open('/mobile-finder/oppo','_self');" onmousedown="ga('send','event','Widget-Mobile-Search-Brand','Oppo_3','/mobile-finder/oppo',{'dimension7':'savedArticle_Page','dimension8':'3'})"> </div> <div class="logoName"> <a href="/mobile-finder/oppo"> <h3 class="title">Oppo</h3> </a> </div> </div> </div> <div class="logosBox" > <div class="logoBoxInner"> <div class="logoImage 11"> <img data-src="https://images.hindustantimes.com/tech/img/logos/oneplus.png" src="" class="lazyload" alt="oneplus" onclick="window.open('/mobile-finder/oneplus','_self');" onmousedown="ga('send','event','Widget-Mobile-Search-Brand','OnePlus_4','/mobile-finder/oneplus',{'dimension7':'savedArticle_Page','dimension8':'4'})"> </div> <div class="logoName"> <a href="/mobile-finder/oneplus"> <h3 class="title">OnePlus</h3> </a> </div> </div> </div> <div class="logosBox" > <div class="logoBoxInner"> <div class="logoImage 11"> <img data-src="https://images.hindustantimes.com/tech/img/logos/google.png" src="" class="lazyload" alt="google" onclick="window.open('/mobile-finder/google','_self');" onmousedown="ga('send','event','Widget-Mobile-Search-Brand','Google_5','/mobile-finder/google',{'dimension7':'savedArticle_Page','dimension8':'5'})"> </div> <div class="logoName"> <a href="/mobile-finder/google"> <h3 class="title">Google</h3> </a> </div> </div> </div> <div class="logosBox" > <div class="logoBoxInner"> <div class="logoImage 11"> <img data-src="https://images.hindustantimes.com/tech/img/logos/realme.png" src="" class="lazyload" alt="realme" onclick="window.open('/mobile-finder/realme','_self');" onmousedown="ga('send','event','Widget-Mobile-Search-Brand','Realme_6','/mobile-finder/realme',{'dimension7':'savedArticle_Page','dimension8':'6'})"> </div> <div class="logoName"> <a href="/mobile-finder/realme"> <h3 class="title">Realme</h3> </a> </div> </div> </div> <div class="logosBox" > <div class="logoBoxInner"> <div class="logoImage 11"> <img data-src="https://images.hindustantimes.com/tech/img/logos/nokia.png" src="" class="lazyload" alt="nokia" onclick="window.open('/mobile-finder/nokia','_self');" onmousedown="ga('send','event','Widget-Mobile-Search-Brand','Nokia_7','/mobile-finder/nokia',{'dimension7':'savedArticle_Page','dimension8':'7'})"> </div> <div class="logoName"> <a href="/mobile-finder/nokia"> <h3 class="title">Nokia</h3> </a> </div> </div> </div> <div class="logosBox" > <div class="logoBoxInner"> <div class="logoImage 11"> <img data-src="https://images.hindustantimes.com/tech/img/logos/moto.png" src="" class="lazyload" alt="moto" onclick="window.open('/mobile-finder/moto','_self');" onmousedown="ga('send','event','Widget-Mobile-Search-Brand','Moto_8','/mobile-finder/moto',{'dimension7':'savedArticle_Page','dimension8':'8'})"> </div> <div class="logoName"> <a href="/mobile-finder/moto"> <h3 class="title">Moto</h3> </a> </div> </div> </div> <div class="logosBox" > <div class="logoBoxInner"> <div class="logoImage 11"> <img data-src="https://images.hindustantimes.com/tech/img/logos/vivo.png" src="" class="lazyload" alt="vivo" onclick="window.open('/mobile-finder/vivo','_self');" onmousedown="ga('send','event','Widget-Mobile-Search-Brand','Vivo_9','/mobile-finder/vivo',{'dimension7':'savedArticle_Page','dimension8':'9'})"> </div> <div class="logoName"> <a href="/mobile-finder/vivo"> <h3 class="title">Vivo</h3> </a> </div> </div> </div> <div class="logosBox" > <div class="logoBoxInner"> <div class="logoImage 11"> <img data-src="https://images.hindustantimes.com/tech/img/logos/sony.png" src="" class="lazyload" alt="sony" onclick="window.open('/mobile-finder/sony','_self');" onmousedown="ga('send','event','Widget-Mobile-Search-Brand','Sony_10','/mobile-finder/sony',{'dimension7':'savedArticle_Page','dimension8':'10'})"> </div> <div class="logoName"> <a href="/mobile-finder/sony"> <h3 class="title">Sony</h3> </a> </div> </div> </div> <div class="logosBox" > <div class="logoBoxInner"> <div class="logoImage 11"> <img data-src="https://images.hindustantimes.com/tech/img/logos/nothing.png" src="" class="lazyload" alt="nothing" onclick="window.open('/mobile-finder/nothing','_self');" onmousedown="ga('send','event','Widget-Mobile-Search-Brand','Nothing_11','/mobile-finder/nothing',{'dimension7':'savedArticle_Page','dimension8':'11'})"> </div> <div class="logoName"> <a href="/mobile-finder/nothing"> <h3 class="title">Nothing</h3> </a> </div> </div> </div> <div class="logosBox" > <div class="logoBoxInner"> <div class="logoImage 11"> <img data-src="https://images.hindustantimes.com/tech/img/logos/infinix.png" src="" class="lazyload" alt="infinix" onclick="window.open('/mobile-finder/infinix','_self');" onmousedown="ga('send','event','Widget-Mobile-Search-Brand','Infinix_12','/mobile-finder/infinix',{'dimension7':'savedArticle_Page','dimension8':'12'})"> </div> <div class="logoName"> <a href="/mobile-finder/infinix"> <h3 class="title">Infinix</h3> </a> </div> </div> </div> <div class="logosBox" > <div class="logoBoxInner"> <div class="logoImage 11"> <img data-src="https://images.hindustantimes.com/tech/img/logos/tecno.png" src="" class="lazyload" alt="tecno" onclick="window.open('/mobile-finder/tecno','_self');" onmousedown="ga('send','event','Widget-Mobile-Search-Brand','Tecno_13','/mobile-finder/tecno',{'dimension7':'savedArticle_Page','dimension8':'13'})"> </div> <div class="logoName"> <a href="/mobile-finder/tecno"> <h3 class="title">Tecno</h3> </a> </div> </div> </div> <div class="logosBox" > <div class="logoBoxInner"> <div class="logoImage 11"> <img data-src="https://images.hindustantimes.com/tech/img/logos/lenovo.png" src="" class="lazyload" alt="lenovo" onclick="window.open('/mobile-finder/lenovo','_self');" onmousedown="ga('send','event','Widget-Mobile-Search-Brand','Lenovo_14','/mobile-finder/lenovo',{'dimension7':'savedArticle_Page','dimension8':'14'})"> </div> <div class="logoName"> <a href="/mobile-finder/lenovo"> <h3 class="title">Lenovo</h3> </a> </div> </div> </div> <div class="logosBox" > <div class="logoBoxInner"> <div class="logoImage 11"> <img data-src="https://images.hindustantimes.com/tech/img/logos/lg.png" src="" class="lazyload" alt="lg" onclick="window.open('/mobile-finder/lg','_self');" onmousedown="ga('send','event','Widget-Mobile-Search-Brand','LG_15','/mobile-finder/lg',{'dimension7':'savedArticle_Page','dimension8':'15'})"> </div> <div class="logoName"> <a href="/mobile-finder/lg"> <h3 class="title">LG</h3> </a> </div> </div> </div> <div class="logosBox" > <div class="logoBoxInner"> <div class="logoImage 11"> <img data-src="https://images.hindustantimes.com/tech/img/logos/huawei.png" src="" class="lazyload" alt="huawei" onclick="window.open('/mobile-finder/huawei','_self');" onmousedown="ga('send','event','Widget-Mobile-Search-Brand','Huawei_16','/mobile-finder/huawei',{'dimension7':'savedArticle_Page','dimension8':'16'})"> </div> <div class="logoName"> <a href="/mobile-finder/huawei"> <h3 class="title">Huawei</h3> </a> </div> </div> </div> <div class="logosBox" > <div class="logoBoxInner"> <div class="logoImage 11"> <img data-src="https://images.hindustantimes.com/tech/img/logos/honor.png" src="" class="lazyload" alt="honor" onclick="window.open('/mobile-finder/honor','_self');" onmousedown="ga('send','event','Widget-Mobile-Search-Brand','Honor_17','/mobile-finder/honor',{'dimension7':'savedArticle_Page','dimension8':'17'})"> </div> <div class="logoName"> <a href="/mobile-finder/honor"> <h3 class="title">Honor</h3> </a> </div> </div> </div> <div class="logosBox" > <div class="logoBoxInner"> <div class="logoImage 11"> <img data-src="https://images.hindustantimes.com/tech/img/logos/gionee.png" src="" class="lazyload" alt="gionee" onclick="window.open('/mobile-finder/gionee','_self');" onmousedown="ga('send','event','Widget-Mobile-Search-Brand','Gionee_18','/mobile-finder/gionee',{'dimension7':'savedArticle_Page','dimension8':'18'})"> </div> <div class="logoName"> <a href="/mobile-finder/gionee"> <h3 class="title">Gionee</h3> </a> </div> </div> </div> <div class="logosBox" > <div class="logoBoxInner"> <div class="logoImage 11"> <img data-src="https://images.hindustantimes.com/tech/img/logos/asus.png" src="" class="lazyload" alt="asus" onclick="window.open('/mobile-finder/asus','_self');" onmousedown="ga('send','event','Widget-Mobile-Search-Brand','Asus_19','/mobile-finder/asus',{'dimension7':'savedArticle_Page','dimension8':'19'})"> </div> <div class="logoName"> <a href="/mobile-finder/asus"> <h3 class="title">Asus</h3> </a> </div> </div> </div> <div class="logosBox" > <div class="logoBoxInner"> <div class="logoImage 11"> <img data-src="https://images.hindustantimes.com/tech/img/logos/reliance.png" src="" class="lazyload" alt="reliance" onclick="window.open('/mobile-finder/reliance','_self');" onmousedown="ga('send','event','Widget-Mobile-Search-Brand','Reliance_20','/mobile-finder/reliance',{'dimension7':'savedArticle_Page','dimension8':'20'})"> </div> <div class="logoName"> <a href="/mobile-finder/reliance"> <h3 class="title">Reliance</h3> </a> </div> </div> </div> <div class="logosBox" > <div class="logoBoxInner"> <div class="logoImage 11"> <img data-src="https://images.hindustantimes.com/tech/img/logos/micromax.png" src="" class="lazyload" alt="micromax" onclick="window.open('/mobile-finder/micromax','_self');" onmousedown="ga('send','event','Widget-Mobile-Search-Brand','Micromax_21','/mobile-finder/micromax',{'dimension7':'savedArticle_Page','dimension8':'21'})"> </div> <div class="logoName"> <a href="/mobile-finder/micromax"> <h3 class="title">Micromax</h3> </a> </div> </div> </div> </div> <a href="javascript:void(0);" data-topropercategory="Mobile" data-searchby="brand" data-prefix="https://tech.hindustantimes.com/" data-category="Mobile" data-pos="1" class="viewMoreBrand Mobile_brand_gadgetSearchBtn gadgetSearchBtn">View All <img src="https://images.hindustantimes.com/tech/static/revamp/images/png/brand-view-all.png" width="13" height="8" loading="lazy"/> </a> </div> <div id="Mobile_budget_gadgetSearch" class="searchGadgetsBox" style="display:none"> <div class="circlesWrapper gadgetsSearchBox"> <a href="/mobile-finder/best-phone-under-5000" class="roundCircle"><h3 class="title">₹1000 - ₹5,000</h3></a> <a href="/mobile-finder/best-phone-under-10000" class="roundCircle"><h3 class="title">₹5,000 - ₹10,000</h3></a> <a href="/mobile-finder/best-phone-under-15000" class="roundCircle"><h3 class="title">₹10,000 - ₹15,000</h3></a> <a href="/mobile-finder/best-phone-under-20000" class="roundCircle"><h3 class="title">₹15,000 - ₹20,000</h3></a> <a href="/mobile-finder/best-phone-under-25000" class="roundCircle"><h3 class="title">₹20,000 - ₹25,000</h3></a> <a href="/mobile-finder/best-phone-under-30000" class="roundCircle"><h3 class="title">₹25,000 - ₹30,000</h3></a> <a href="/mobile-finder/best-phone-under-35000" class="roundCircle"><h3 class="title">₹30,000 - ₹35,000</h3></a> <a href="/mobile-finder/best-phone-under-40000" class="roundCircle"><h3 class="title">₹35,000 - ₹40,000</h3></a> <a href="/mobile-finder?price=40000&price=223530" class="roundCircle"><h3 class="title">₹40,000 & Above</h3></a> </div> <a href="/mobile-finder" class="viewAllBtn Mobile_budget_gadgetSearchBtn gadgetSearchBtn">Check all Budget Mobile Phones <img src="https://images.hindustantimes.com/tech/static/revamp/images/png/view-all-icon.png" width="13" height="12" loading="lazy" /></a> </div> <div id="Mobile_feature_gadgetSearch" class="searchGadgetsBox" style="display:none"> <div class="circlesWrapper gadgetsSearchBox"> <a href="/mobile-finder/android-phones" class="roundCircle"><h3 class="title">Android Phones</h3></a> <a href="/mobile-finder/5g-mobile-phones" class="roundCircle"><h3 class="title">5G Mobile Phones</h3></a> <a href="/mobile-finder/4g-connectivity" class="roundCircle"><h3 class="title">4G Mobile Phones</h3></a> <a href="/mobile-finder/8-gb-ram" class="roundCircle"><h3 class="title">8GB RAM Mobiles</h3></a> <a href="/mobile-finder/6-gb-ram" class="roundCircle"><h3 class="title">6GB RAM Mobiles</h3></a> <a href="/mobile-finder/4gb-ram-mobiles" class="roundCircle"><h3 class="title">4GB RAM Mobiles</h3></a> <a href="/mobile-finder/dual-sim-sim-type" class="roundCircle"><h3 class="title">Dual Sim Mobile Phones</h3></a> </div> <a href="/mobile-finder" class="viewAllBtn Mobile_feature_gadgetSearchBtn gadgetSearchBtn">Check all Features of Mobile Phones <img src="https://images.hindustantimes.com/tech/static/revamp/images/png/view-all-icon.png" width="13" height="12" loading="lazy" /></a> </div> </div> <div id="Tablet_gadgetSearch" style="display:none" class="gadgetsSearchWrapper"> <div id="Tablet_brand_gadgetSearch" class="searchGadgetsBox"> <div class="logosWrapper gadgetsSearchBox"> <div class="logosBox" > <div class="logoBoxInner"> <div class="logoImage 11"> <img data-src="https://images.hindustantimes.com/tech/img/logos/realme.png" src="" class="lazyload" alt="realme" onclick="window.open('/tablet-finder/realme','_self');" onmousedown="ga('send','event','Widget-Tablet-Search-Brand','Realme_0','/tablet-finder/realme',{'dimension7':'savedArticle_Page','dimension8':'0'})"> </div> <div class="logoName"> <a href="/tablet-finder/realme"> <h3 class="title">Realme</h3> </a> </div> </div> </div> <div class="logosBox" > <div class="logoBoxInner"> <div class="logoImage 11"> <img data-src="https://images.hindustantimes.com/tech/img/logos/samsung.png" src="" class="lazyload" alt="samsung" onclick="window.open('/tablet-finder/samsung','_self');" onmousedown="ga('send','event','Widget-Tablet-Search-Brand','Samsung_1','/tablet-finder/samsung',{'dimension7':'savedArticle_Page','dimension8':'1'})"> </div> <div class="logoName"> <a href="/tablet-finder/samsung"> <h3 class="title">Samsung</h3> </a> </div> </div> </div> <div class="logosBox" > <div class="logoBoxInner"> <div class="logoImage 11"> <img data-src="https://images.hindustantimes.com/tech/img/logos/apple.png" src="" class="lazyload" alt="apple" onclick="window.open('/tablet-finder/apple','_self');" onmousedown="ga('send','event','Widget-Tablet-Search-Brand','Apple_2','/tablet-finder/apple',{'dimension7':'savedArticle_Page','dimension8':'2'})"> </div> <div class="logoName"> <a href="/tablet-finder/apple"> <h3 class="title">Apple</h3> </a> </div> </div> </div> <div class="logosBox" > <div class="logoBoxInner"> <div class="logoImage 11"> <img data-src="https://images.hindustantimes.com/tech/img/logos/lenovo.png" src="" class="lazyload" alt="lenovo" onclick="window.open('/tablet-finder/lenovo','_self');" onmousedown="ga('send','event','Widget-Tablet-Search-Brand','Lenovo_3','/tablet-finder/lenovo',{'dimension7':'savedArticle_Page','dimension8':'3'})"> </div> <div class="logoName"> <a href="/tablet-finder/lenovo"> <h3 class="title">Lenovo</h3> </a> </div> </div> </div> <div class="logosBox" > <div class="logoBoxInner"> <div class="logoImage 11"> <img data-src="https://images.hindustantimes.com/tech/img/logos/asus.png" src="" class="lazyload" alt="asus" onclick="window.open('/tablet-finder/asus','_self');" onmousedown="ga('send','event','Widget-Tablet-Search-Brand','Asus_4','/tablet-finder/asus',{'dimension7':'savedArticle_Page','dimension8':'4'})"> </div> <div class="logoName"> <a href="/tablet-finder/asus"> <h3 class="title">Asus</h3> </a> </div> </div> </div> <div class="logosBox" > <div class="logoBoxInner"> <div class="logoImage 11"> <img data-src="https://images.hindustantimes.com/tech/img/logos/micromax.png" src="" class="lazyload" alt="micromax" onclick="window.open('/tablet-finder/micromax','_self');" onmousedown="ga('send','event','Widget-Tablet-Search-Brand','micromax_5','/tablet-finder/micromax',{'dimension7':'savedArticle_Page','dimension8':'5'})"> </div> <div class="logoName"> <a href="/tablet-finder/micromax"> <h3 class="title">micromax</h3> </a> </div> </div> </div> <div class="logosBox" > <div class="logoBoxInner"> <div class="logoImage 11"> <img data-src="https://images.hindustantimes.com/tech/img/logos/dell.png" src="" class="lazyload" alt="dell" onclick="window.open('/tablet-finder/dell','_self');" onmousedown="ga('send','event','Widget-Tablet-Search-Brand','Dell_6','/tablet-finder/dell',{'dimension7':'savedArticle_Page','dimension8':'6'})"> </div> <div class="logoName"> <a href="/tablet-finder/dell"> <h3 class="title">Dell</h3> </a> </div> </div> </div> <div class="logosBox" > <div class="logoBoxInner"> <div class="logoImage 11"> <img data-src="https://images.hindustantimes.com/tech/img/logos/iball.png" src="" class="lazyload" alt="iball" onclick="window.open('/tablet-finder/iball','_self');" onmousedown="ga('send','event','Widget-Tablet-Search-Brand','Iball_7','/tablet-finder/iball',{'dimension7':'savedArticle_Page','dimension8':'7'})"> </div> <div class="logoName"> <a href="/tablet-finder/iball"> <h3 class="title">Iball</h3> </a> </div> </div> </div> <div class="logosBox" > <div class="logoBoxInner"> <div class="logoImage 11"> <img data-src="https://images.hindustantimes.com/tech/img/logos/hp.png" src="" class="lazyload" alt="hp" onclick="window.open('/tablet-finder/hp','_self');" onmousedown="ga('send','event','Widget-Tablet-Search-Brand','HP_8','/tablet-finder/hp',{'dimension7':'savedArticle_Page','dimension8':'8'})"> </div> <div class="logoName"> <a href="/tablet-finder/hp"> <h3 class="title">HP</h3> </a> </div> </div> </div> <div class="logosBox" > <div class="logoBoxInner"> <div class="logoImage 11"> <img data-src="https://images.hindustantimes.com/tech/img/logos/xiaomi.png" src="" class="lazyload" alt="xiaomi" onclick="window.open('/tablet-finder/xiaomi','_self');" onmousedown="ga('send','event','Widget-Tablet-Search-Brand','Xiaomi_9','/tablet-finder/xiaomi',{'dimension7':'savedArticle_Page','dimension8':'9'})"> </div> <div class="logoName"> <a href="/tablet-finder/xiaomi"> <h3 class="title">Xiaomi</h3> </a> </div> </div> </div> <div class="logosBox" > <div class="logoBoxInner"> <div class="logoImage 11"> <img data-src="https://images.hindustantimes.com/tech/img/logos/honor.png" src="" class="lazyload" alt="honor" onclick="window.open('/tablet-finder/honor','_self');" onmousedown="ga('send','event','Widget-Tablet-Search-Brand','Honor_10','/tablet-finder/honor',{'dimension7':'savedArticle_Page','dimension8':'10'})"> </div> <div class="logoName"> <a href="/tablet-finder/honor"> <h3 class="title">Honor</h3> </a> </div> </div> </div> <div class="logosBox" > <div class="logoBoxInner"> <div class="logoImage 11"> <img data-src="https://images.hindustantimes.com/tech/img/logos/huawei.png" src="" class="lazyload" alt="huawei" onclick="window.open('/tablet-finder/huawei','_self');" onmousedown="ga('send','event','Widget-Tablet-Search-Brand','Huawei_11','/tablet-finder/huawei',{'dimension7':'savedArticle_Page','dimension8':'11'})"> </div> <div class="logoName"> <a href="/tablet-finder/huawei"> <h3 class="title">Huawei</h3> </a> </div> </div> </div> <div class="logosBox" > <div class="logoBoxInner"> <div class="logoImage 11"> <img data-src="https://images.hindustantimes.com/tech/img/logos/gionee.png" src="" class="lazyload" alt="gionee" onclick="window.open('/tablet-finder/gionee','_self');" onmousedown="ga('send','event','Widget-Tablet-Search-Brand','Gionee_12','/tablet-finder/gionee',{'dimension7':'savedArticle_Page','dimension8':'12'})"> </div> <div class="logoName"> <a href="/tablet-finder/gionee"> <h3 class="title">Gionee</h3> </a> </div> </div> </div> <div class="logosBox" > <div class="logoBoxInner"> <div class="logoImage 11"> <img data-src="https://images.hindustantimes.com/tech/img/logos/sony.png" src="" class="lazyload" alt="sony" onclick="window.open('/tablet-finder/sony','_self');" onmousedown="ga('send','event','Widget-Tablet-Search-Brand','Sony_13','/tablet-finder/sony',{'dimension7':'savedArticle_Page','dimension8':'13'})"> </div> <div class="logoName"> <a href="/tablet-finder/sony"> <h3 class="title">Sony</h3> </a> </div> </div> </div> <div class="logosBox" > <div class="logoBoxInner"> <div class="logoImage 11"> <img data-src="https://images.hindustantimes.com/tech/img/logos/nokia.png" src="" class="lazyload" alt="nokia" onclick="window.open('/tablet-finder/nokia','_self');" onmousedown="ga('send','event','Widget-Tablet-Search-Brand','Nokia_14','/tablet-finder/nokia',{'dimension7':'savedArticle_Page','dimension8':'14'})"> </div> <div class="logoName"> <a href="/tablet-finder/nokia"> <h3 class="title">Nokia</h3> </a> </div> </div> </div> </div> <a href="javascript:void(0);" data-topropercategory="Tablet" data-searchby="brand" data-prefix="https://tech.hindustantimes.com/" data-category="Tablet" data-pos="1" class="viewMoreBrand Tablet_brand_gadgetSearchBtn gadgetSearchBtn">View All <img src="https://images.hindustantimes.com/tech/static/revamp/images/png/brand-view-all.png" width="13" height="8" loading="lazy"/> </a> </div> <div id="Tablet_budget_gadgetSearch" class="searchGadgetsBox" style="display:none"> <div class="circlesWrapper gadgetsSearchBox"> <a href="/tablet-finder/tablets-under-5000" class="roundCircle"><h3 class="title">₹1,000 - ₹5,000</h3></a> <a href="/tablet-finder/tablets-under-10000" class="roundCircle"><h3 class="title">₹5,000 - ₹10,000</h3></a> <a href="/tablet-finder/tablets-under-15000" class="roundCircle"><h3 class="title">₹10,000 - ₹15,000</h3></a> <a href="/tablet-finder/tablets-under-20000" class="roundCircle"><h3 class="title">₹15,000 - ₹20,000</h3></a> <a href="/tablet-finder/tablets-under-25000" class="roundCircle"><h3 class="title">₹20,000 - ₹25,000</h3></a> <a href="/tablet-finder/tablets-under-30000" class="roundCircle"><h3 class="title">₹25,000 - ₹30,000</h3></a> <a href="/tablet-finder?price=30000&price=194900" class="roundCircle"><h3 class="title">₹30,000 & Above</h3></a> </div> <a href="/tablet-finder" class="viewAllBtn Tablet_budget_gadgetSearchBtn gadgetSearchBtn">Check all Budget Tablets <img src="https://images.hindustantimes.com/tech/static/revamp/images/png/view-all-icon.png" width="13" height="12" loading="lazy" /></a> </div> <div id="Tablet_feature_gadgetSearch" class="searchGadgetsBox" style="display:none"> <div class="circlesWrapper gadgetsSearchBox"> <a href="/tablet-finder/4g-tablets" class="roundCircle"><h3 class="title">4G Tablets</h3></a> <a href="/tablet-finder/5g-tablets" class="roundCircle"><h3 class="title">5G Tablets</h3></a> <a href="/tablet-finder/upcoming-tablets" class="roundCircle"><h3 class="title">Upcoming Tablets</h3></a> </div> <a href="/tablet-finder" class="viewAllBtn Tablet_feature_gadgetSearchBtn gadgetSearchBtn">Check all Features of Tablets <img src="https://images.hindustantimes.com/tech/static/revamp/images/png/view-all-icon.png" width="13" height="12" loading="lazy" /></a> </div> </div> <div id="Laptop_gadgetSearch" style="display:none" class="gadgetsSearchWrapper"> <div id="Laptop_brand_gadgetSearch" class="searchGadgetsBox"> <div class="logosWrapper gadgetsSearchBox"> <div class="logosBox" > <div class="logoBoxInner"> <div class="logoImage 11"> <img data-src="https://images.hindustantimes.com/tech/img/logos/samsung.png" src="" class="lazyload" alt="samsung" onclick="window.open('/laptop-finder/samsung','_self');" onmousedown="ga('send','event','Widget-Laptop-Search-Brand','Samsung_0','/laptop-finder/samsung',{'dimension7':'savedArticle_Page','dimension8':'0'})"> </div> <div class="logoName"> <a href="/laptop-finder/samsung"> <h3 class="title">Samsung</h3> </a> </div> </div> </div> <div class="logosBox" > <div class="logoBoxInner"> <div class="logoImage 11"> <img data-src="https://images.hindustantimes.com/tech/img/logos/apple.png" src="" class="lazyload" alt="apple" onclick="window.open('/laptop-finder/apple','_self');" onmousedown="ga('send','event','Widget-Laptop-Search-Brand','Apple_1','/laptop-finder/apple',{'dimension7':'savedArticle_Page','dimension8':'1'})"> </div> <div class="logoName"> <a href="/laptop-finder/apple"> <h3 class="title">Apple</h3> </a> </div> </div> </div> <div class="logosBox" > <div class="logoBoxInner"> <div class="logoImage 11"> <img data-src="https://images.hindustantimes.com/tech/img/logos/microsoft.png" src="" class="lazyload" alt="microsoft" onclick="window.open('/laptop-finder/microsoft','_self');" onmousedown="ga('send','event','Widget-Laptop-Search-Brand','Microsoft_2','/laptop-finder/microsoft',{'dimension7':'savedArticle_Page','dimension8':'2'})"> </div> <div class="logoName"> <a href="/laptop-finder/microsoft"> <h3 class="title">Microsoft</h3> </a> </div> </div> </div> <div class="logosBox" > <div class="logoBoxInner"> <div class="logoImage 11"> <img data-src="https://images.hindustantimes.com/tech/img/logos/lenovo.png" src="" class="lazyload" alt="lenovo" onclick="window.open('/laptop-finder/lenovo','_self');" onmousedown="ga('send','event','Widget-Laptop-Search-Brand','Lenovo_3','/laptop-finder/lenovo',{'dimension7':'savedArticle_Page','dimension8':'3'})"> </div> <div class="logoName"> <a href="/laptop-finder/lenovo"> <h3 class="title">Lenovo</h3> </a> </div> </div> </div> <div class="logosBox" > <div class="logoBoxInner"> <div class="logoImage 11"> <img data-src="https://images.hindustantimes.com/tech/img/logos/hp.png" src="" class="lazyload" alt="hp" onclick="window.open('/laptop-finder/hp','_self');" onmousedown="ga('send','event','Widget-Laptop-Search-Brand','HP_4','/laptop-finder/hp',{'dimension7':'savedArticle_Page','dimension8':'4'})"> </div> <div class="logoName"> <a href="/laptop-finder/hp"> <h3 class="title">HP</h3> </a> </div> </div> </div> <div class="logosBox" > <div class="logoBoxInner"> <div class="logoImage 11"> <img data-src="https://images.hindustantimes.com/tech/img/logos/dell.png" src="" class="lazyload" alt="dell" onclick="window.open('/laptop-finder/dell','_self');" onmousedown="ga('send','event','Widget-Laptop-Search-Brand','Dell_5','/laptop-finder/dell',{'dimension7':'savedArticle_Page','dimension8':'5'})"> </div> <div class="logoName"> <a href="/laptop-finder/dell"> <h3 class="title">Dell</h3> </a> </div> </div> </div> <div class="logosBox" > <div class="logoBoxInner"> <div class="logoImage 11"> <img data-src="https://images.hindustantimes.com/tech/img/logos/asus.png" src="" class="lazyload" alt="asus" onclick="window.open('/laptop-finder/asus','_self');" onmousedown="ga('send','event','Widget-Laptop-Search-Brand','Asus_6','/laptop-finder/asus',{'dimension7':'savedArticle_Page','dimension8':'6'})"> </div> <div class="logoName"> <a href="/laptop-finder/asus"> <h3 class="title">Asus</h3> </a> </div> </div> </div> <div class="logosBox" > <div class="logoBoxInner"> <div class="logoImage 11"> <img data-src="https://images.hindustantimes.com/tech/img/logos/lg.png" src="" class="lazyload" alt="lg" onclick="window.open('/laptop-finder/lg','_self');" onmousedown="ga('send','event','Widget-Laptop-Search-Brand','LG_7','/laptop-finder/lg',{'dimension7':'savedArticle_Page','dimension8':'7'})"> </div> <div class="logoName"> <a href="/laptop-finder/lg"> <h3 class="title">LG</h3> </a> </div> </div> </div> <div class="logosBox" > <div class="logoBoxInner"> <div class="logoImage 11"> <img data-src="https://images.hindustantimes.com/tech/img/logos/acer.png" src="" class="lazyload" alt="acer" onclick="window.open('/laptop-finder/acer','_self');" onmousedown="ga('send','event','Widget-Laptop-Search-Brand','Acer_8','/laptop-finder/acer',{'dimension7':'savedArticle_Page','dimension8':'8'})"> </div> <div class="logoName"> <a href="/laptop-finder/acer"> <h3 class="title">Acer</h3> </a> </div> </div> </div> <div class="logosBox" > <div class="logoBoxInner"> <div class="logoImage 11"> <img data-src="https://images.hindustantimes.com/tech/img/logos/msi.png" src="" class="lazyload" alt="msi" onclick="window.open('/laptop-finder/msi','_self');" onmousedown="ga('send','event','Widget-Laptop-Search-Brand','Msi_9','/laptop-finder/msi',{'dimension7':'savedArticle_Page','dimension8':'9'})"> </div> <div class="logoName"> <a href="/laptop-finder/msi"> <h3 class="title">Msi</h3> </a> </div> </div> </div> <div class="logosBox" > <div class="logoBoxInner"> <div class="logoImage 11"> <img data-src="https://images.hindustantimes.com/tech/img/logos/razer.png" src="" class="lazyload" alt="razer" onclick="window.open('/laptop-finder/razer','_self');" onmousedown="ga('send','event','Widget-Laptop-Search-Brand','Razer_10','/laptop-finder/razer',{'dimension7':'savedArticle_Page','dimension8':'10'})"> </div> <div class="logoName"> <a href="/laptop-finder/razer"> <h3 class="title">Razer</h3> </a> </div> </div> </div> <div class="logosBox" > <div class="logoBoxInner"> <div class="logoImage 11"> <img data-src="https://images.hindustantimes.com/tech/img/logos/realme.png" src="" class="lazyload" alt="realme" onclick="window.open('/laptop-finder/realme','_self');" onmousedown="ga('send','event','Widget-Laptop-Search-Brand','Realme_11','/laptop-finder/realme',{'dimension7':'savedArticle_Page','dimension8':'11'})"> </div> <div class="logoName"> <a href="/laptop-finder/realme"> <h3 class="title">Realme</h3> </a> </div> </div> </div> <div class="logosBox" > <div class="logoBoxInner"> <div class="logoImage 11"> <img data-src="https://images.hindustantimes.com/tech/img/logos/xiaomi.png" src="" class="lazyload" alt="xiaomi" onclick="window.open('/laptop-finder/xiaomi','_self');" onmousedown="ga('send','event','Widget-Laptop-Search-Brand','Xiaomi_12','/laptop-finder/xiaomi',{'dimension7':'savedArticle_Page','dimension8':'12'})"> </div> <div class="logoName"> <a href="/laptop-finder/xiaomi"> <h3 class="title">Xiaomi</h3> </a> </div> </div> </div> <div class="logosBox" > <div class="logoBoxInner"> <div class="logoImage 11"> <img data-src="https://images.hindustantimes.com/tech/img/logos/sony.png" src="" class="lazyload" alt="sony" onclick="window.open('/laptop-finder/sony','_self');" onmousedown="ga('send','event','Widget-Laptop-Search-Brand','Sony_13','/laptop-finder/sony',{'dimension7':'savedArticle_Page','dimension8':'13'})"> </div> <div class="logoName"> <a href="/laptop-finder/sony"> <h3 class="title">Sony</h3> </a> </div> </div> </div> <div class="logosBox" > <div class="logoBoxInner"> <div class="logoImage 11"> <img data-src="https://images.hindustantimes.com/tech/img/logos/huawei.png" src="" class="lazyload" alt="huawei" onclick="window.open('/laptop-finder/huawei','_self');" onmousedown="ga('send','event','Widget-Laptop-Search-Brand','Huawei_14','/laptop-finder/huawei',{'dimension7':'savedArticle_Page','dimension8':'14'})"> </div> <div class="logoName"> <a href="/laptop-finder/huawei"> <h3 class="title">Huawei</h3> </a> </div> </div> </div> <div class="logosBox" > <div class="logoBoxInner"> <div class="logoImage 11"> <img data-src="https://images.hindustantimes.com/tech/img/logos/micromax.png" src="" class="lazyload" alt="micromax" onclick="window.open('/laptop-finder/micromax','_self');" onmousedown="ga('send','event','Widget-Laptop-Search-Brand','Micromax_15','/laptop-finder/micromax',{'dimension7':'savedArticle_Page','dimension8':'15'})"> </div> <div class="logoName"> <a href="/laptop-finder/micromax"> <h3 class="title">Micromax</h3> </a> </div> </div> </div> <div class="logosBox" > <div class="logoBoxInner"> <div class="logoImage 11"> <img data-src="https://images.hindustantimes.com/tech/img/logos/nokia.png" src="" class="lazyload" alt="nokia" onclick="window.open('/laptop-finder/nokia','_self');" onmousedown="ga('send','event','Widget-Laptop-Search-Brand','Nokia_16','/laptop-finder/nokia',{'dimension7':'savedArticle_Page','dimension8':'16'})"> </div> <div class="logoName"> <a href="/laptop-finder/nokia"> <h3 class="title">Nokia</h3> </a> </div> </div> </div> <div class="logosBox" > <div class="logoBoxInner"> <div class="logoImage 11"> <img data-src="https://images.hindustantimes.com/tech/img/logos/honor.png" src="" class="lazyload" alt="honor" onclick="window.open('/laptop-finder/honor','_self');" onmousedown="ga('send','event','Widget-Laptop-Search-Brand','Honor_17','/laptop-finder/honor',{'dimension7':'savedArticle_Page','dimension8':'17'})"> </div> <div class="logoName"> <a href="/laptop-finder/honor"> <h3 class="title">Honor</h3> </a> </div> </div> </div> </div> <a href="javascript:void(0);" data-topropercategory="Laptop" data-searchby="brand" data-prefix="https://tech.hindustantimes.com/" data-category="Laptop" data-pos="1" class="viewMoreBrand Laptop_brand_gadgetSearchBtn gadgetSearchBtn">View All <img src="https://images.hindustantimes.com/tech/static/revamp/images/png/brand-view-all.png" width="13" height="8" loading="lazy"/> </a> </div> <div id="Laptop_budget_gadgetSearch" class="searchGadgetsBox" style="display:none"> <div class="circlesWrapper gadgetsSearchBox"> <a href="/laptop-finder/laptops-under-20000" class="roundCircle"><h3 class="title">₹1,000 - ₹20,000</h3></a> <a href="/laptop-finder/laptops-under-30000" class="roundCircle"><h3 class="title">₹20,000 - ₹30,000</h3></a> <a href="/laptop-finder/laptops-under-40000" class="roundCircle"><h3 class="title">₹30,000 - ₹40,000</h3></a> <a href="/laptop-finder/laptops-under-50000" class="roundCircle"><h3 class="title">₹40,000 - ₹50,000</h3></a> <a href="/laptop-finder/laptops-under-60000" class="roundCircle"><h3 class="title">₹50,000 - ₹60,000</h3></a> <a href="/laptop-finder/laptops-under-70000" class="roundCircle"><h3 class="title">₹60,000 - ₹70,000</h3></a> <a href="/laptop-finder?price=70000&price=699999" class="roundCircle"><h3 class="title">₹70,000 & Above</h3></a> </div> <a href="/laptop-finder" class="viewAllBtn Laptop_budget_gadgetSearchBtn gadgetSearchBtn">Check all Budget Laptops <img src="https://images.hindustantimes.com/tech/static/revamp/images/png/view-all-icon.png" width="13" height="12" loading="lazy" /></a> </div> <div id="Laptop_feature_gadgetSearch" class="searchGadgetsBox" style="display:none"> <div class="circlesWrapper gadgetsSearchBox"> <a href="/laptop-finder/i3-laptops" class="roundCircle"><h3 class="title">i3 Laptops</h3></a> <a href="/laptop-finder/i5-laptops" class="roundCircle"><h3 class="title">i5 Laptops</h3></a> <a href="/laptop-finder/i7-laptops" class="roundCircle"><h3 class="title">i7 Laptops</h3></a> <a href="/laptop-finder/i9-laptops" class="roundCircle"><h3 class="title">i9 Laptops</h3></a> <a href="/laptop-finder/upcoming-laptops" class="roundCircle"><h3 class="title">Upcoming Laptops</h3></a> <a href="/laptop-finder/touch-screen-laptops" class="roundCircle"><h3 class="title">Touch Screen Laptops</h3></a> </div> <a href="/laptop-finder" class="viewAllBtn Laptop_feature_gadgetSearchBtn gadgetSearchBtn">Check all Features of Laptops <img src="https://images.hindustantimes.com/tech/static/revamp/images/png/view-all-icon.png" width="13" height="12" loading="lazy" /></a> </div> </div> <div id="SmartWatches_gadgetSearch" style="display:none" class="gadgetsSearchWrapper"> <div id="SmartWatches_brand_gadgetSearch" class="searchGadgetsBox"> <div class="logosWrapper gadgetsSearchBox"> <div class="logosBox" > <div class="logoBoxInner"> <div class="logoImage 11"> <img data-src="https://images.hindustantimes.com/tech/img/logos/apple.png" src="" class="lazyload" alt="apple" onclick="window.open('/smart-watches/apple','_self');" onmousedown="ga('send','event','Widget-SmartWatches-Search-Brand','Apple_0','/smart-watches/apple',{'dimension7':'savedArticle_Page','dimension8':'0'})"> </div> <div class="logoName"> <a href="/smart-watches/apple"> <h3 class="title">Apple</h3> </a> </div> </div> </div> <div class="logosBox" > <div class="logoBoxInner"> <div class="logoImage 11"> <img data-src="https://images.hindustantimes.com/tech/img/logos/samsung.png" src="" class="lazyload" alt="samsung" onclick="window.open('/smart-watches/samsung','_self');" onmousedown="ga('send','event','Widget-SmartWatches-Search-Brand','Samsung_1','/smart-watches/samsung',{'dimension7':'savedArticle_Page','dimension8':'1'})"> </div> <div class="logoName"> <a href="/smart-watches/samsung"> <h3 class="title">Samsung</h3> </a> </div> </div> </div> <div class="logosBox" > <div class="logoBoxInner"> <div class="logoImage 11"> <img data-src="https://images.hindustantimes.com/tech/img/logos/oneplus.png" src="" class="lazyload" alt="oneplus" onclick="window.open('/smart-watches/oneplus','_self');" onmousedown="ga('send','event','Widget-SmartWatches-Search-Brand','OnePlus_2','/smart-watches/oneplus',{'dimension7':'savedArticle_Page','dimension8':'2'})"> </div> <div class="logoName"> <a href="/smart-watches/oneplus"> <h3 class="title">OnePlus</h3> </a> </div> </div> </div> <div class="logosBox" > <div class="logoBoxInner"> <div class="logoImage 11"> <img data-src="https://images.hindustantimes.com/tech/img/logos/xiaomi.png" src="" class="lazyload" alt="xiaomi" onclick="window.open('/smart-watches/xiaomi','_self');" onmousedown="ga('send','event','Widget-SmartWatches-Search-Brand','Xiaomi_3','/smart-watches/xiaomi',{'dimension7':'savedArticle_Page','dimension8':'3'})"> </div> <div class="logoName"> <a href="/smart-watches/xiaomi"> <h3 class="title">Xiaomi</h3> </a> </div> </div> </div> <div class="logosBox" > <div class="logoBoxInner"> <div class="logoImage 11"> <img data-src="https://images.hindustantimes.com/tech/img/logos/huawei.png" src="" class="lazyload" alt="huawei" onclick="window.open('/smart-watches/huawei','_self');" onmousedown="ga('send','event','Widget-SmartWatches-Search-Brand','Huawei_4','/smart-watches/huawei',{'dimension7':'savedArticle_Page','dimension8':'4'})"> </div> <div class="logoName"> <a href="/smart-watches/huawei"> <h3 class="title">Huawei</h3> </a> </div> </div> </div> <div class="logosBox" > <div class="logoBoxInner"> <div class="logoImage 11"> <img data-src="https://images.hindustantimes.com/tech/img/logos/fossil.png" src="" class="lazyload" alt="fossil" onclick="window.open('/smart-watches/fossil','_self');" onmousedown="ga('send','event','Widget-SmartWatches-Search-Brand','Fossil_5','/smart-watches/fossil',{'dimension7':'savedArticle_Page','dimension8':'5'})"> </div> <div class="logoName"> <a href="/smart-watches/fossil"> <h3 class="title">Fossil</h3> </a> </div> </div> </div> <div class="logosBox" > <div class="logoBoxInner"> <div class="logoImage 11"> <img data-src="https://images.hindustantimes.com/tech/img/logos/amazfit.png" src="" class="lazyload" alt="amazfit" onclick="window.open('/smart-watches/amazfit','_self');" onmousedown="ga('send','event','Widget-SmartWatches-Search-Brand','Amazfit_6','/smart-watches/amazfit',{'dimension7':'savedArticle_Page','dimension8':'6'})"> </div> <div class="logoName"> <a href="/smart-watches/amazfit"> <h3 class="title">Amazfit</h3> </a> </div> </div> </div> <div class="logosBox" > <div class="logoBoxInner"> <div class="logoImage 11"> <img data-src="https://images.hindustantimes.com/tech/img/logos/realme.png" src="" class="lazyload" alt="realme" onclick="window.open('/smart-watches/realme','_self');" onmousedown="ga('send','event','Widget-SmartWatches-Search-Brand','Realme_7','/smart-watches/realme',{'dimension7':'savedArticle_Page','dimension8':'7'})"> </div> <div class="logoName"> <a href="/smart-watches/realme"> <h3 class="title">Realme</h3> </a> </div> </div> </div> <div class="logosBox" > <div class="logoBoxInner"> <div class="logoImage 11"> <img data-src="https://images.hindustantimes.com/tech/img/logos/fitbit.png" src="" class="lazyload" alt="fitbit" onclick="window.open('/smart-watches/fitbit','_self');" onmousedown="ga('send','event','Widget-SmartWatches-Search-Brand','Fitbit_8','/smart-watches/fitbit',{'dimension7':'savedArticle_Page','dimension8':'8'})"> </div> <div class="logoName"> <a href="/smart-watches/fitbit"> <h3 class="title">Fitbit</h3> </a> </div> </div> </div> <div class="logosBox" > <div class="logoBoxInner"> <div class="logoImage 11"> <img data-src="https://images.hindustantimes.com/tech/img/logos/garmin.png" src="" class="lazyload" alt="garmin" onclick="window.open('/smart-watches/garmin','_self');" onmousedown="ga('send','event','Widget-SmartWatches-Search-Brand','Garmin_9','/smart-watches/garmin',{'dimension7':'savedArticle_Page','dimension8':'9'})"> </div> <div class="logoName"> <a href="/smart-watches/garmin"> <h3 class="title">Garmin</h3> </a> </div> </div> </div> <div class="logosBox" > <div class="logoBoxInner"> <div class="logoImage 11"> <img data-src="https://images.hindustantimes.com/tech/img/logos/boat.png" src="" class="lazyload" alt="boat" onclick="window.open('/smart-watches/boat','_self');" onmousedown="ga('send','event','Widget-SmartWatches-Search-Brand','Boat_10','/smart-watches/boat',{'dimension7':'savedArticle_Page','dimension8':'10'})"> </div> <div class="logoName"> <a href="/smart-watches/boat"> <h3 class="title">Boat</h3> </a> </div> </div> </div> <div class="logosBox" > <div class="logoBoxInner"> <div class="logoImage 11"> <img data-src="https://images.hindustantimes.com/tech/img/logos/fire-boltt.png" src="" class="lazyload" alt="fire boltt" onclick="window.open('/smart-watches/fire-boltt','_self');" onmousedown="ga('send','event','Widget-SmartWatches-Search-Brand','Fire Boltt_11','/smart-watches/fire-boltt',{'dimension7':'savedArticle_Page','dimension8':'11'})"> </div> <div class="logoName"> <a href="/smart-watches/fire-boltt"> <h3 class="title">Fire Boltt</h3> </a> </div> </div> </div> <div class="logosBox" > <div class="logoBoxInner"> <div class="logoImage 11"> <img data-src="https://images.hindustantimes.com/tech/img/logos/fastrack.png" src="" class="lazyload" alt="fastrack" onclick="window.open('/smart-watches/fastrack','_self');" onmousedown="ga('send','event','Widget-SmartWatches-Search-Brand','Fastrack_12','/smart-watches/fastrack',{'dimension7':'savedArticle_Page','dimension8':'12'})"> </div> <div class="logoName"> <a href="/smart-watches/fastrack"> <h3 class="title">Fastrack</h3> </a> </div> </div> </div> <div class="logosBox" > <div class="logoBoxInner"> <div class="logoImage 11"> <img data-src="https://images.hindustantimes.com/tech/img/logos/beatxp.png" src="" class="lazyload" alt="beatxp" onclick="window.open('/smart-watches/beatxp','_self');" onmousedown="ga('send','event','Widget-SmartWatches-Search-Brand','Beatxp_13','/smart-watches/beatxp',{'dimension7':'savedArticle_Page','dimension8':'13'})"> </div> <div class="logoName"> <a href="/smart-watches/beatxp"> <h3 class="title">Beatxp</h3> </a> </div> </div> </div> <div class="logosBox" > <div class="logoBoxInner"> <div class="logoImage 11"> <img data-src="https://images.hindustantimes.com/tech/img/logos/noise.png" src="" class="lazyload" alt="noise" onclick="window.open('/smart-watches/noise','_self');" onmousedown="ga('send','event','Widget-SmartWatches-Search-Brand','Noise_14','/smart-watches/noise',{'dimension7':'savedArticle_Page','dimension8':'14'})"> </div> <div class="logoName"> <a href="/smart-watches/noise"> <h3 class="title">Noise</h3> </a> </div> </div> </div> <div class="logosBox" > <div class="logoBoxInner"> <div class="logoImage 11"> <img data-src="https://images.hindustantimes.com/tech/img/logos/pebble.png" src="" class="lazyload" alt="pebble" onclick="window.open('/smart-watches/pebble','_self');" onmousedown="ga('send','event','Widget-SmartWatches-Search-Brand','Pebble_15','/smart-watches/pebble',{'dimension7':'savedArticle_Page','dimension8':'15'})"> </div> <div class="logoName"> <a href="/smart-watches/pebble"> <h3 class="title">Pebble</h3> </a> </div> </div> </div> <div class="logosBox" > <div class="logoBoxInner"> <div class="logoImage 11"> <img data-src="https://images.hindustantimes.com/tech/img/logos/oppo.png" src="" class="lazyload" alt="oppo" onclick="window.open('/smart-watches/oppo','_self');" onmousedown="ga('send','event','Widget-SmartWatches-Search-Brand','Oppo_16','/smart-watches/oppo',{'dimension7':'savedArticle_Page','dimension8':'16'})"> </div> <div class="logoName"> <a href="/smart-watches/oppo"> <h3 class="title">Oppo</h3> </a> </div> </div> </div> <div class="logosBox" > <div class="logoBoxInner"> <div class="logoImage 11"> <img data-src="https://images.hindustantimes.com/tech/img/logos/sony.png" src="" class="lazyload" alt="sony" onclick="window.open('/smart-watches/sony','_self');" onmousedown="ga('send','event','Widget-SmartWatches-Search-Brand','Sony_17','/smart-watches/sony',{'dimension7':'savedArticle_Page','dimension8':'17'})"> </div> <div class="logoName"> <a href="/smart-watches/sony"> <h3 class="title">Sony</h3> </a> </div> </div> </div> <div class="logosBox" > <div class="logoBoxInner"> <div class="logoImage 11"> <img data-src="https://images.hindustantimes.com/tech/img/logos/lg.png" src="" class="lazyload" alt="lg" onclick="window.open('/smart-watches/lg','_self');" onmousedown="ga('send','event','Widget-SmartWatches-Search-Brand','LG_18','/smart-watches/lg',{'dimension7':'savedArticle_Page','dimension8':'18'})"> </div> <div class="logoName"> <a href="/smart-watches/lg"> <h3 class="title">LG</h3> </a> </div> </div> </div> </div> <a href="javascript:void(0);" data-topropercategory="SmartWatches" data-searchby="brand" data-prefix="https://tech.hindustantimes.com/" data-category="SmartWatches" data-pos="1" class="viewMoreBrand SmartWatches_brand_gadgetSearchBtn gadgetSearchBtn">View All <img src="https://images.hindustantimes.com/tech/static/revamp/images/png/brand-view-all.png" width="13" height="8" loading="lazy"/> </a> </div> <div id="SmartWatches_budget_gadgetSearch" class="searchGadgetsBox" style="display:none"> <div class="circlesWrapper gadgetsSearchBox"> <a href="/smart-watches/smart-watches-under-2000 " class="roundCircle"><h3 class="title">Under 2,000</h3></a> <a href="/smart-watches/smart-watches-under-5000 " class="roundCircle"><h3 class="title">Under 5,000</h3></a> <a href="/smart-watches/smart-watches-under-10000 " class="roundCircle"><h3 class="title">Under 10,000</h3></a> <a href="/smart-watches/smart-watches-under-15000 " class="roundCircle"><h3 class="title">Under 15,000</h3></a> <a href="/smart-watches/smart-watches-under-20000 " class="roundCircle"><h3 class="title">Under 20,000</h3></a> <a href="/smart-watches/smart-watches-above-20000" class="roundCircle"><h3 class="title">Above 20,000</h3></a> </div> <a href="/smart-watches" class="viewAllBtn SmartWatches_budget_gadgetSearchBtn gadgetSearchBtn">Check all Budget Smart Watches <img src="https://images.hindustantimes.com/tech/static/revamp/images/png/view-all-icon.png" width="13" height="12" loading="lazy" /></a> </div> <div id="SmartWatches_feature_gadgetSearch" class="searchGadgetsBox" style="display:none"> <div class="circlesWrapper gadgetsSearchBox"> <a href="/smart-watches/upcoming-smart-watches" class="roundCircle"><h3 class="title">Upcoming Smart Watches</h3></a> </div> <a href="/smart-watches" class="viewAllBtn SmartWatches_feature_gadgetSearchBtn gadgetSearchBtn">Check all Features of Smart Watches <img src="https://images.hindustantimes.com/tech/static/revamp/images/png/view-all-icon.png" width="13" height="12" loading="lazy" /></a> </div> </div> <div id="FitnessBands_gadgetSearch" style="display:none" class="gadgetsSearchWrapper"> <div id="FitnessBands_brand_gadgetSearch" class="searchGadgetsBox"> <div class="logosWrapper gadgetsSearchBox"> <div class="logosBox" > <div class="logoBoxInner"> <div class="logoImage 11"> <img data-src="https://images.hindustantimes.com/tech/img/logos/fitbit.png" src="" class="lazyload" alt="fitbit" onclick="window.open('/fitness-bands/fitbit','_self');" onmousedown="ga('send','event','Widget-FitnessBands-Search-Brand','Fitbit_0','/fitness-bands/fitbit',{'dimension7':'savedArticle_Page','dimension8':'0'})"> </div> <div class="logoName"> <a href="/fitness-bands/fitbit"> <h3 class="title">Fitbit</h3> </a> </div> </div> </div> <div class="logosBox" > <div class="logoBoxInner"> <div class="logoImage 11"> <img data-src="https://images.hindustantimes.com/tech/img/logos/realme.png" src="" class="lazyload" alt="realme" onclick="window.open('/fitness-bands/realme','_self');" onmousedown="ga('send','event','Widget-FitnessBands-Search-Brand','Realme_1','/fitness-bands/realme',{'dimension7':'savedArticle_Page','dimension8':'1'})"> </div> <div class="logoName"> <a href="/fitness-bands/realme"> <h3 class="title">Realme</h3> </a> </div> </div> </div> <div class="logosBox" > <div class="logoBoxInner"> <div class="logoImage 11"> <img data-src="https://images.hindustantimes.com/tech/img/logos/samsung.png" src="" class="lazyload" alt="samsung" onclick="window.open('/fitness-bands/samsung','_self');" onmousedown="ga('send','event','Widget-FitnessBands-Search-Brand','Samsung_2','/fitness-bands/samsung',{'dimension7':'savedArticle_Page','dimension8':'2'})"> </div> <div class="logoName"> <a href="/fitness-bands/samsung"> <h3 class="title">Samsung</h3> </a> </div> </div> </div> <div class="logosBox" > <div class="logoBoxInner"> <div class="logoImage 11"> <img data-src="https://images.hindustantimes.com/tech/img/logos/huawei.png" src="" class="lazyload" alt="huawei" onclick="window.open('/fitness-bands/huawei','_self');" onmousedown="ga('send','event','Widget-FitnessBands-Search-Brand','Huawei_3','/fitness-bands/huawei',{'dimension7':'savedArticle_Page','dimension8':'3'})"> </div> <div class="logoName"> <a href="/fitness-bands/huawei"> <h3 class="title">Huawei</h3> </a> </div> </div> </div> <div class="logosBox" > <div class="logoBoxInner"> <div class="logoImage 11"> <img data-src="https://images.hindustantimes.com/tech/img/logos/garmin.png" src="" class="lazyload" alt="garmin" onclick="window.open('/fitness-bands/garmin','_self');" onmousedown="ga('send','event','Widget-FitnessBands-Search-Brand','Garmin_4','/fitness-bands/garmin',{'dimension7':'savedArticle_Page','dimension8':'4'})"> </div> <div class="logoName"> <a href="/fitness-bands/garmin"> <h3 class="title">Garmin</h3> </a> </div> </div> </div> <div class="logosBox" > <div class="logoBoxInner"> <div class="logoImage 11"> <img data-src="https://images.hindustantimes.com/tech/img/logos/xiaomi.png" src="" class="lazyload" alt="xiaomi" onclick="window.open('/fitness-bands/xiaomi','_self');" onmousedown="ga('send','event','Widget-FitnessBands-Search-Brand','Xiaomi_5','/fitness-bands/xiaomi',{'dimension7':'savedArticle_Page','dimension8':'5'})"> </div> <div class="logoName"> <a href="/fitness-bands/xiaomi"> <h3 class="title">Xiaomi</h3> </a> </div> </div> </div> <div class="logosBox" > <div class="logoBoxInner"> <div class="logoImage 11"> <img data-src="https://images.hindustantimes.com/tech/img/logos/honor.png" src="" class="lazyload" alt="honor" onclick="window.open('/fitness-bands/honor','_self');" onmousedown="ga('send','event','Widget-FitnessBands-Search-Brand','Honor_6','/fitness-bands/honor',{'dimension7':'savedArticle_Page','dimension8':'6'})"> </div> <div class="logoName"> <a href="/fitness-bands/honor"> <h3 class="title">Honor</h3> </a> </div> </div> </div> </div> <a href="javascript:void(0);" data-topropercategory="FitnessBands" data-searchby="brand" data-prefix="https://tech.hindustantimes.com/" data-category="FitnessBands" data-pos="1" class="viewMoreBrand FitnessBands_brand_gadgetSearchBtn gadgetSearchBtn">View All <img src="https://images.hindustantimes.com/tech/static/revamp/images/png/brand-view-all.png" width="13" height="8" loading="lazy"/> </a> </div> <div id="FitnessBands_budget_gadgetSearch" class="searchGadgetsBox" style="display:none"> <div class="circlesWrapper gadgetsSearchBox"> <a href="/fitness-bands/fitness-band-under-1000" class="roundCircle"><h3 class="title">Under 1,000</h3></a> <a href="/fitness-bands/fitness-band-under-2000" class="roundCircle"><h3 class="title">Under 2,000</h3></a> <a href="/fitness-bands/fitness-band-under-5000" class="roundCircle"><h3 class="title">Under 5,000</h3></a> <a href="/fitness-bands/fitness-band-under-10000" class="roundCircle"><h3 class="title">Under 10,000</h3></a> <a href="/fitness-bands/fitness-band-under-15000" class="roundCircle"><h3 class="title">Under 15,000</h3></a> <a href="/fitness-bands/fitness-band-above-15000" class="roundCircle"><h3 class="title">Above 15,000</h3></a> </div> <a href="/fitness-bands" class="viewAllBtn FitnessBands_budget_gadgetSearchBtn gadgetSearchBtn">Check all Budget Fitness Bands <img src="https://images.hindustantimes.com/tech/static/revamp/images/png/view-all-icon.png" width="13" height="12" loading="lazy" /></a> </div> <div id="FitnessBands_feature_gadgetSearch" class="searchGadgetsBox" style="display:none"> <div class="circlesWrapper gadgetsSearchBox"> <a href="/fitness-bands/upcoming-fitness-bands" class="roundCircle"><h3 class="title">Upcoming Fitness Bands</h3></a> </div> <a href="/fitness-bands" class="viewAllBtn FitnessBands_feature_gadgetSearchBtn gadgetSearchBtn">Check all Features of Fitness Bands <img src="https://images.hindustantimes.com/tech/static/revamp/images/png/view-all-icon.png" width="13" height="12" loading="lazy" /></a> </div> </div> </div> </section> <script> Lazyload(); </script> <section class="comparison allProductsAvailable"> <h2 class="heading">Gadgets Comparisons</h2> <div class="tabLinksWrapper" id="gadgetBoxTabs"><a href="javascript:void(0)" class="active" data-current="Mobiles">Mobiles</a><a href="javascript:void(0)" data-current="Tablets">Tablets</a><a href="javascript:void(0)" data-current="Laptops" >Laptops</a></div> <div class="scrollArea" id="mobileComparison"> <div class="sliderWrapper scrollView"> </div> <a href="/compare-mobile-phones" onclick="ga('send', 'event', 'Widget-Mobiles-Comparisons','View-all-Mobile-Comparisons', 'tech.hindustantimes.com/compare-mobile-phones',{'dimension7': 'bookmark page'});" class="viewAllBtn" data-before='View all'> Mobile Comparisons <img src="https://images.hindustantimes.com/tech/static/revamp/images/png/view-all-icon.png" width="13" height="12" loading="lazy" /></a> </div> <div class="scrollArea" id="laptopComparison"> <span class="leftArrow" style="display: none;"><img src="https://images.hindustantimes.com/tech/static/revamp/images/png/slider-arrow-right-white-bg.png" width="48" height="48" loading="lazy"/></span> <span class="rightArrow"><img src="https://images.hindustantimes.com/tech/static/revamp/images/png/slider-arrow-right-white-bg.png" width="48" height="48" loading="lazy"/></span> <div class="sliderWrapper scrollView"> </div> <a href="/compare-laptops" onclick="ga('send', 'event', 'Widget-Laptops-Comparisons','View-all-Laptops-Comparisons', 'tech.hindustantimes.com/compare-laptops',{'dimension7': 'bookmark page'});" class="viewAllBtn" data-before='View all'> Laptops Comparisons <img src="https://images.hindustantimes.com/tech/static/revamp/images/png/view-all-icon.png" width="13" height="12" loading="lazy" /></a> </div> <div class="scrollArea" id="tabletComparison"> <span class="leftArrow" style="display: none;"><img src="https://images.hindustantimes.com/tech/static/revamp/images/png/slider-arrow-right-white-bg.png" width="48" height="48" loading="lazy"/></span> <span class="rightArrow"><img src="https://images.hindustantimes.com/tech/static/revamp/images/png/slider-arrow-right-white-bg.png" width="48" height="48" loading="lazy"/></span> <div class="sliderWrapper scrollView"> </div> <a href="/compare-tablets" onclick="ga('send', 'event', 'Widget-Tablets-Comparisons','View-all-Tablets-Comparisons', 'tech.hindustantimes.com/compare-tablets',{'dimension7': 'bookmark page'});" class="viewAllBtn" data-before='View all'>Tablets Comparisons <img src="https://images.hindustantimes.com/tech/static/revamp/images/png/view-all-icon.png" width="13" height="12" loading="lazy" /></a> </div> </section> <div class="desktopNone"> <div class="adsHeight300x250 mb20"> <div data-adcode="/1055314/HT_Tech_WAP_Section_B_Multisize" data-adsize="[[300, 250],[336,280], [250,250], [1,1]]" class="ht-small-dfp-ad"></div> </div> </div> </div> <!--rhs section start here--> <aside class="rhSection"> <!--add section start here--> <!-- /1055314/HT_TECH_Desk_Home_Top_300x250_Multisize --> <div class="mobileNone"> <div class="adsHeight300x250 mb20 marginMinus"> <div data-adcode="/1055314/HT_TECH_Desk_Section_Top_300x250_Multisize" data-adsize="[[300, 250],[336, 280],[250, 250]]" class="ht-dfp-ad ht-dfp-top-ad "></div> </div> </div> <!--add section end here DONE--> <div class="mobileNone"> <div class="adsHeight300x250 mb20 marginMinus"> <div data-adcode="/1055314/HT_TECH_Desk_Section_Middle_300x250_Multisize" data-adsize="[[300, 250],[336, 280],[250, 250]]" class="ht-dfp-ad"></div> </div> </div> <!--add section end here--> <!----> <div class="rtCard"><h2 class="rtHeading">Trending Stories</h2> <div class="rtBody"> <a data-item-widget-name="Trending Stories" data-item-story-type="story" data-item-story-title="iPhone SE 4 launch still months away, powerful mid-ranger likely to arrive in…" data-item-target-url="tech.hindustantimes.com/mobile/news/iphone-se-4-launch-still-months-away-powerful-mid-ranger-likely-to-arrive-in-71725589579605.html" data-item-product-position="1" data-item-story-segment="news" data-item-event="story_click" data-item-page-name="bookmark page" data-item-widget-element="title" href="/mobile/news/iphone-se-4-launch-still-months-away-powerful-mid-ranger-likely-to-arrive-in-71725589579605.html" class="parentWrapper"> <div class="imgWrapper" onclick="setTimeout(() => sendGA4Events(this), 0)" data-item-widget-name="trending stories" data-item-story-type="story" data-item-story-title="iPhone SE 4 launch still months away, powerful mid-ranger likely to arrive in…" data-item-target-url="tech.hindustantimes.com/mobile/news/iphone-se-4-launch-still-months-away-powerful-mid-ranger-likely-to-arrive-in-71725589579605.html" data-item-product-position="1" data-item-story-segment="news" data-item-event="story_click" data-item-page-name="bookmark page" data-item-widget-element="image"> <img data-src="https://images.hindustantimes.com/tech/img/2024/09/06/414x233/iPhone_SE_4_1724987943521_1725589718894.jpg" src="" class="lazyload" alt="iPhone SE 4 launch still months away, powerful mid-ranger likely to arrive in…" /> </div> <h3 class="title" onclick="setTimeout(() => sendGA4Events(this), 0)" data-item-widget-name="trending stories" data-item-story-type="story" data-item-story-title="iPhone SE 4 launch still months away, powerful mid-ranger likely to arrive in…" data-item-target-url="tech.hindustantimes.com/mobile/news/iphone-se-4-launch-still-months-away-powerful-mid-ranger-likely-to-arrive-in-71725589579605.html" data-item-product-position="1" data-item-story-segment="news" data-item-event="story_click" data-item-page-name="bookmark page" data-item-widget-element="title"> iPhone SE 4 launch still months away, powerful mid-ranger likely to arrive in…</h3> </a> <a data-item-widget-name="Trending Stories" data-item-story-type="story" data-item-story-title="Apple’s ‘Glowtime’ Event on 9 September: These products, including iPhone SE 4, are not expected to launch" data-item-target-url="tech.hindustantimes.com/mobile/news/apples-glowtime-event-on-9-september-these-products-including-iphone-se-4-are-not-expected-to-launch-71725512333608.html" data-item-product-position="2" data-item-story-segment="news" data-item-event="story_click" data-item-page-name="bookmark page" data-item-widget-element="title" href="/mobile/news/apples-glowtime-event-on-9-september-these-products-including-iphone-se-4-are-not-expected-to-launch-71725512333608.html" class="parentWrapper"> <div class="imgWrapper" onclick="setTimeout(() => sendGA4Events(this), 0)" data-item-widget-name="trending stories" data-item-story-type="story" data-item-story-title="Apple’s ‘Glowtime’ Event on 9 September: These products, including iPhone SE 4, are not expected to launch" data-item-target-url="tech.hindustantimes.com/mobile/news/apples-glowtime-event-on-9-september-these-products-including-iphone-se-4-are-not-expected-to-launch-71725512333608.html" data-item-product-position="2" data-item-story-segment="news" data-item-event="story_click" data-item-page-name="bookmark page" data-item-widget-element="image"> <img data-src="https://images.hindustantimes.com/tech/img/2024/09/05/414x233/iPhone_SE_4_1724987943521_1725512875965.jpg" src="" class="lazyload" alt="iPhone SE 4 launch likely in March: Apple Intelligence, 8GB RAM, at just Rs…" /> </div> <h3 class="title" onclick="setTimeout(() => sendGA4Events(this), 0)" data-item-widget-name="trending stories" data-item-story-type="story" data-item-story-title="Apple’s ‘Glowtime’ Event on 9 September: These products, including iPhone SE 4, are not expected to launch" data-item-target-url="tech.hindustantimes.com/mobile/news/apples-glowtime-event-on-9-september-these-products-including-iphone-se-4-are-not-expected-to-launch-71725512333608.html" data-item-product-position="2" data-item-story-segment="news" data-item-event="story_click" data-item-page-name="bookmark page" data-item-widget-element="title"> Apple’s ‘Glowtime’ Event on 9 September: These products, including iPhone SE 4, are not expected to launch</h3> </a> <a data-item-widget-name="Trending Stories" data-item-story-type="story" data-item-story-title="iPhone 16 Pro must improve in these 3 areas—And I say this after using iPhone 15 Pro for almost a year" data-item-target-url="tech.hindustantimes.com/mobile/news/iphone-16-pro-must-improve-in-these-3-areas-and-i-say-this-after-using-iphone-15-pro-for-almost-a-year-71725430737657.html" data-item-product-position="3" data-item-story-segment="news" data-item-event="story_click" data-item-page-name="bookmark page" data-item-widget-element="title" href="/mobile/news/iphone-16-pro-must-improve-in-these-3-areas-and-i-say-this-after-using-iphone-15-pro-for-almost-a-year-71725430737657.html" class="parentWrapper"> <div class="imgWrapper" onclick="setTimeout(() => sendGA4Events(this), 0)" data-item-widget-name="trending stories" data-item-story-type="story" data-item-story-title="iPhone 16 Pro must improve in these 3 areas—And I say this after using iPhone 15 Pro for almost a year" data-item-target-url="tech.hindustantimes.com/mobile/news/iphone-16-pro-must-improve-in-these-3-areas-and-i-say-this-after-using-iphone-15-pro-for-almost-a-year-71725430737657.html" data-item-product-position="3" data-item-story-segment="news" data-item-event="story_click" data-item-page-name="bookmark page" data-item-widget-element="image"> <img data-src="https://images.hindustantimes.com/tech/img/2024/09/04/414x233/iphone_16_pro_photos_1725430993713_1725431052986.jpeg" src="" class="lazyload" alt="Iphone 16 Pro launch date" /> </div> <h3 class="title" onclick="setTimeout(() => sendGA4Events(this), 0)" data-item-widget-name="trending stories" data-item-story-type="story" data-item-story-title="iPhone 16 Pro must improve in these 3 areas—And I say this after using iPhone 15 Pro for almost a year" data-item-target-url="tech.hindustantimes.com/mobile/news/iphone-16-pro-must-improve-in-these-3-areas-and-i-say-this-after-using-iphone-15-pro-for-almost-a-year-71725430737657.html" data-item-product-position="3" data-item-story-segment="news" data-item-event="story_click" data-item-page-name="bookmark page" data-item-widget-element="title"> iPhone 16 Pro must improve in these 3 areas—And I say this after using iPhone 15 Pro for almost a year</h3> </a> <a data-item-widget-name="Trending Stories" data-item-story-type="story" data-item-story-title="Aadhaar Card Update for free online: Act before September 14 to avoid future fees" data-item-target-url="tech.hindustantimes.com/web-stories/aadhaar-card-update-for-free-online-act-before-september-14-to-avoid-future-fees-71725539788423.html" data-item-product-position="4" data-item-story-segment="NA" data-item-event="story_click" data-item-page-name="bookmark page" data-item-widget-element="title" href="/web-stories/aadhaar-card-update-for-free-online-act-before-september-14-to-avoid-future-fees-71725539788423.html" class="parentWrapper"> <div class="imgWrapper" onclick="setTimeout(() => sendGA4Events(this), 0)" data-item-widget-name="trending stories" data-item-story-type="story" data-item-story-title="Aadhaar Card Update for free online: Act before September 14 to avoid future fees" data-item-target-url="tech.hindustantimes.com/web-stories/aadhaar-card-update-for-free-online-act-before-september-14-to-avoid-future-fees-71725539788423.html" data-item-product-position="4" data-item-story-segment="NA" data-item-event="story_click" data-item-page-name="bookmark page" data-item-widget-element="image"> <img data-src="https://images.hindustantimes.com/tech/img/2024/09/05/414x233/Aadhaar_Card_Update_for_free_online_1725540096815_1725540097087.jpg" src="" class="lazyload" alt="Aadhaar_Card_Update_for_free_online" /> </div> <h3 class="title" onclick="setTimeout(() => sendGA4Events(this), 0)" data-item-widget-name="trending stories" data-item-story-type="story" data-item-story-title="Aadhaar Card Update for free online: Act before September 14 to avoid future fees" data-item-target-url="tech.hindustantimes.com/web-stories/aadhaar-card-update-for-free-online-act-before-september-14-to-avoid-future-fees-71725539788423.html" data-item-product-position="4" data-item-story-segment="NA" data-item-event="story_click" data-item-page-name="bookmark page" data-item-widget-element="title"> Aadhaar Card Update for free online: Act before September 14 to avoid future fees</h3> </a> <a data-item-widget-name="Trending Stories" data-item-story-type="story" data-item-story-title="Anil Kapoor featured in TIME's 100 Most Influential People in AI cover, but Sam Altman misses out: Here’s why" data-item-target-url="tech.hindustantimes.com/tech/news/anil-kapoor-featured-in-times-100-most-influential-people-in-ai-cover-but-sam-altman-misses-out-here-s-why-71725600598682.html" data-item-product-position="5" data-item-story-segment="news" data-item-event="story_click" data-item-page-name="bookmark page" data-item-widget-element="title" href="/tech/news/anil-kapoor-featured-in-times-100-most-influential-people-in-ai-cover-but-sam-altman-misses-out-here-s-why-71725600598682.html" class="parentWrapper"> <div class="imgWrapper" onclick="setTimeout(() => sendGA4Events(this), 0)" data-item-widget-name="trending stories" data-item-story-type="story" data-item-story-title="Anil Kapoor featured in TIME's 100 Most Influential People in AI cover, but Sam Altman misses out: Here’s why" data-item-target-url="tech.hindustantimes.com/tech/news/anil-kapoor-featured-in-times-100-most-influential-people-in-ai-cover-but-sam-altman-misses-out-here-s-why-71725600598682.html" data-item-product-position="5" data-item-story-segment="news" data-item-event="story_click" data-item-page-name="bookmark page" data-item-widget-element="image"> <img data-src="https://images.hindustantimes.com/tech/img/2024/09/06/414x233/anil_kapoor_time_magazine_ai_cover_1725601280429_1725601280758.jpg" src="" class="lazyload" alt="Anil Kapoor has fought a battle against AI misrepresentation in New Delhi's high court." /> </div> <h3 class="title" onclick="setTimeout(() => sendGA4Events(this), 0)" data-item-widget-name="trending stories" data-item-story-type="story" data-item-story-title="Anil Kapoor featured in TIME's 100 Most Influential People in AI cover, but Sam Altman misses out: Here’s why" data-item-target-url="tech.hindustantimes.com/tech/news/anil-kapoor-featured-in-times-100-most-influential-people-in-ai-cover-but-sam-altman-misses-out-here-s-why-71725600598682.html" data-item-product-position="5" data-item-story-segment="news" data-item-event="story_click" data-item-page-name="bookmark page" data-item-widget-element="title"> Anil Kapoor featured in TIME's 100 Most Influential People in AI cover, but Sam Altman misses out: Here’s why</h3> </a> <!--loop div end here--> </div></div> <div class="rtCard"><h2 class="rtHeading">Best Deals For You</h2> <div class="rtBody"> <a href="/tech/news/air-purifiers-to-buy-in-india-for-healthy-and-clean-air-here-are-top-5-picks-71729256487263.html" class="parentWrapper" onclick="ga('send', 'event', 'Widget-Best Deals For You',1,'tech.hindustantimes.com/tech/news/air-purifiers-to-buy-in-india-for-healthy-and-clean-air-here-are-top-5-picks-71729256487263.html',{'dimension7': 'Story_Listing_Page'})"> <div class="imgWrapper" onclick="sendGA4Events(this)" data-item-widget-name="Best Deals For You" data-item-story-type="story" data-item-story-title="Air purifiers to buy in India for healthy and clean air- Here are top 5 picks" data-item-target-url="tech.hindustantimes.com/tech/news/air-purifiers-to-buy-in-india-for-healthy-and-clean-air-here-are-top-5-picks-71729256487263.html" data-item-product-position="1" data-item-story-segment="news" data-item-event="story_click" data-item-page-name="bookmark page" data-item-widget-element="image" > <img data-src="https://images.hindustantimes.com/tech/img/2024/10/18/414x233/81FlC3iTG-L_SL1500__1695108796040_1729256540803.jpg" src="" class="lazyload" alt="Air purifiers to buy in India for healthy and clean air- Here are top 5 picks" /> </div> <h3 class="title" onclick="sendGA4Events(this)" data-item-widget-name="Best Deals For You" data-item-story-type="story" data-item-story-title="Air purifiers to buy in India for healthy and clean air- Here are top 5 picks" data-item-target-url="tech.hindustantimes.com/tech/news/air-purifiers-to-buy-in-india-for-healthy-and-clean-air-here-are-top-5-picks-71729256487263.html" data-item-product-position="1" data-item-story-segment="news" data-item-event="story_click" data-item-page-name="bookmark page" data-item-widget-element="title"> Air purifiers to buy in India for healthy and clean air- Here are top 5 picks</h3></a> <a href="/mobile/news/5-best-smartphones-for-your-eyes-xiaomi-13-honor-90-to-motorola-edge-plus-check-list-71705903324128.html" class="parentWrapper" onclick="ga('send', 'event', 'Widget-Best Deals For You',2,'tech.hindustantimes.com/mobile/news/5-best-smartphones-for-your-eyes-xiaomi-13-honor-90-to-motorola-edge-plus-check-list-71705903324128.html',{'dimension7': 'Story_Listing_Page'})"> <div class="imgWrapper" onclick="sendGA4Events(this)" data-item-widget-name="Best Deals For You" data-item-story-type="story" data-item-story-title="5 best smartphones for your eyes: Xiaomi 13, Honor 90 to Motorola Edge Plus, check list" data-item-target-url="tech.hindustantimes.com/mobile/news/5-best-smartphones-for-your-eyes-xiaomi-13-honor-90-to-motorola-edge-plus-check-list-71705903324128.html" data-item-product-position="2" data-item-story-segment="news" data-item-event="story_click" data-item-page-name="bookmark page" data-item-widget-element="image" > <img data-src="https://images.hindustantimes.com/tech/img/2024/01/22/414x233/Honor_90_1694149538190_1705903348602.png" src="" class="lazyload" alt=" Honor 90" /> </div> <h3 class="title" onclick="sendGA4Events(this)" data-item-widget-name="Best Deals For You" data-item-story-type="story" data-item-story-title="5 best smartphones for your eyes: Xiaomi 13, Honor 90 to Motorola Edge Plus, check list" data-item-target-url="tech.hindustantimes.com/mobile/news/5-best-smartphones-for-your-eyes-xiaomi-13-honor-90-to-motorola-edge-plus-check-list-71705903324128.html" data-item-product-position="2" data-item-story-segment="news" data-item-event="story_click" data-item-page-name="bookmark page" data-item-widget-element="title"> 5 best smartphones for your eyes: Xiaomi 13, Honor 90 to Motorola Edge Plus, check list</h3></a> <a href="/wearables/news/top-10-smartwatch-brands-leading-the-market-with-innovation-71708588108325.html" class="parentWrapper" onclick="ga('send', 'event', 'Widget-Best Deals For You',3,'tech.hindustantimes.com/wearables/news/top-10-smartwatch-brands-leading-the-market-with-innovation-71708588108325.html',{'dimension7': 'Story_Listing_Page'})"> <div class="imgWrapper" onclick="sendGA4Events(this)" data-item-widget-name="Best Deals For You" data-item-story-type="story" data-item-story-title="Top 10 smartwatch brands: Leading the market with innovation" data-item-target-url="tech.hindustantimes.com/wearables/news/top-10-smartwatch-brands-leading-the-market-with-innovation-71708588108325.html" data-item-product-position="3" data-item-story-segment="news" data-item-event="story_click" data-item-page-name="bookmark page" data-item-widget-element="image" > <img data-src="https://images.hindustantimes.com/tech/img/2024/02/22/414x233/luke-chesser-M31VSuBSf0g-unsplash_1708590199972_1708590242322.jpg" src="" class="lazyload" alt="best smartwatch brands" /> </div> <h3 class="title" onclick="sendGA4Events(this)" data-item-widget-name="Best Deals For You" data-item-story-type="story" data-item-story-title="Top 10 smartwatch brands: Leading the market with innovation" data-item-target-url="tech.hindustantimes.com/wearables/news/top-10-smartwatch-brands-leading-the-market-with-innovation-71708588108325.html" data-item-product-position="3" data-item-story-segment="news" data-item-event="story_click" data-item-page-name="bookmark page" data-item-widget-element="title"> Top 10 smartwatch brands: Leading the market with innovation</h3></a> <a href="/home-appliances/news/japanese-smart-toilets-in-india-starting-price-features-and-all-details-to-know-71722830092556.html" class="parentWrapper" onclick="ga('send', 'event', 'Widget-Best Deals For You',4,'tech.hindustantimes.com/home-appliances/news/japanese-smart-toilets-in-india-starting-price-features-and-all-details-to-know-71722830092556.html',{'dimension7': 'Story_Listing_Page'})"> <div class="imgWrapper" onclick="sendGA4Events(this)" data-item-widget-name="Best Deals For You" data-item-story-type="story" data-item-story-title="Japanese toilets in India: TOTO washlet starting price, features and all details to know" data-item-target-url="tech.hindustantimes.com/home-appliances/news/japanese-smart-toilets-in-india-starting-price-features-and-all-details-to-know-71722830092556.html" data-item-product-position="4" data-item-story-segment="news" data-item-event="story_click" data-item-page-name="bookmark page" data-item-widget-element="image" > <img data-src="https://images.hindustantimes.com/tech/img/2024/08/05/414x233/Toto_Washlet_Remote__1722830162423_1722830178689.jpg" src="" class="lazyload" alt="High-tech Japanese toilets are so amazing that you might never want to use tissue paper ever again. Thanks to Toto, you can buy them in India too. (Varun Krishnan)" /> </div> <h3 class="title" onclick="sendGA4Events(this)" data-item-widget-name="Best Deals For You" data-item-story-type="story" data-item-story-title="Japanese toilets in India: TOTO washlet starting price, features and all details to know" data-item-target-url="tech.hindustantimes.com/home-appliances/news/japanese-smart-toilets-in-india-starting-price-features-and-all-details-to-know-71722830092556.html" data-item-product-position="4" data-item-story-segment="news" data-item-event="story_click" data-item-page-name="bookmark page" data-item-widget-element="title"> Japanese toilets in India: TOTO washlet starting price, features and all details to know</h3></a> <a href="/laptops-pc/news/amazon-diwali-sale-2024-get-up-to-40-off-on-asus-vivobook-s-16-oled-to-lenovo-yoga-slim-6-and-more-laptops-71727597587070.html" class="parentWrapper" onclick="ga('send', 'event', 'Widget-Best Deals For You',5,'tech.hindustantimes.com/laptops-pc/news/amazon-diwali-sale-2024-get-up-to-40-off-on-asus-vivobook-s-16-oled-to-lenovo-yoga-slim-6-and-more-laptops-71727597587070.html',{'dimension7': 'Story_Listing_Page'})"> <div class="imgWrapper" onclick="sendGA4Events(this)" data-item-widget-name="Best Deals For You" data-item-story-type="story" data-item-story-title="Amazon Diwali Sale 2024: Get up to 40% off on ASUS Vivobook S 16 OLED to Lenovo Yoga Slim 6 and more laptops" data-item-target-url="tech.hindustantimes.com/laptops-pc/news/amazon-diwali-sale-2024-get-up-to-40-off-on-asus-vivobook-s-16-oled-to-lenovo-yoga-slim-6-and-more-laptops-71727597587070.html" data-item-product-position="5" data-item-story-segment="news" data-item-event="story_click" data-item-page-name="bookmark page" data-item-widget-element="image" > <img data-src="https://images.hindustantimes.com/tech/img/2024/09/29/414x233/Amazon_Diwali_Sale_2024_1727597974040_1727597974240.jpg" src="" class="lazyload" alt="Amazon Diwali Sale 2024" /> </div> <h3 class="title" onclick="sendGA4Events(this)" data-item-widget-name="Best Deals For You" data-item-story-type="story" data-item-story-title="Amazon Diwali Sale 2024: Get up to 40% off on ASUS Vivobook S 16 OLED to Lenovo Yoga Slim 6 and more laptops" data-item-target-url="tech.hindustantimes.com/laptops-pc/news/amazon-diwali-sale-2024-get-up-to-40-off-on-asus-vivobook-s-16-oled-to-lenovo-yoga-slim-6-and-more-laptops-71727597587070.html" data-item-product-position="5" data-item-story-segment="news" data-item-event="story_click" data-item-page-name="bookmark page" data-item-widget-element="title"> Amazon Diwali Sale 2024: Get up to 40% off on ASUS Vivobook S 16 OLED to Lenovo Yoga Slim 6 and more laptops</h3></a> </div></div> <!--add section start here--> <!--new design ad code /1055314/HT_TECH_Desk_Home_Bottom_300x250_Multisize --> <div class="mobileNone adsSticky"> <div class="minadsHeight300x250 mb20 marginMinus"> <div data-adcode="/1055314/HT_TECH_Desk_Section_Bottom_300x250_Multisize" data-adsize="[[300,250], [300,600]]" class="ht-dfp-ad"></div> </div> </div> <!--add section end here--> </aside> <!--rhs section end here --> </div> </div> <div class="mobileNone"> <div class="footerAds250"> <div data-adcode="/1055314/HT_TECH_Desk_Section_Bottom_728x90_Multisize" data-adsize="[[970, 250],[1290, 250],[970, 90],[728, 90],[980, 90],[980, 250],[980, 200]]" class="ht-dfp-ad desktopFooterAd"></div> </div> </div> <div class="desktopNone"> <div class="footerAds250"> <div data-adcode="/1055314/HT_Tech_WAP_Section_Bottom_Multisize" data-adsize="[[336,280],[300,250], [250,250], [1,1]]" class="ht-small-dfp-ad"></div> </div> </div> <div class="searchPopupWrapper"> <span class="closePopup"><img src="https://images.hindustantimes.com/tech/static/revamp/images/png/header-search-close.png" width="30" height="30" /></span> <div class="searchInputParent"> <div class="searchInputBox"> <div class="searchInput"> <span class="backBtn"><img src="https://images.hindustantimes.com/tech/static/revamp/images/png/search-arrow-back.png" width="24" height="24" loading="lazy"/></span> <input type="text" id="findText" name="" autocomplete="off" placeholder="Search for news, mobiles, laptops etc.."> <span class="deleteBtn"><img src="https://images.hindustantimes.com/tech/static/revamp/images/png/header-search-close.png" width="30" height="30" /></span> <a href="" id="searchIconPopup" data-page="Story_Listing_Page" class="searchClick disableBtn"> <img class="search-icon" src="https://images.hindustantimes.com/tech/static/revamp/images/png/header-search.png" width="30" height="30" loading="lazy"/> <img class="search-grey-icon" src="https://images.hindustantimes.com/tech/static/revamp/images/png/header-search-grey.png" width="30" height="30" loading="lazy"/> </a> </div> </div> <div id="errorMsg" style="display:none;color:red;position: relative; z-index: 9;text-align: center; background-color: white;"></div> <div class="searchSuggestion"> <ul id="searchSuggestionList"></ul> </div> <div class="searchResult"> <div class="trendingNewWrapper"> <h2 class="heading">Trending News</h2> <div class="parentWrapper"> <h3 class="title"> <a href="/mobile/news/iphone-se-4-launch-still-months-away-powerful-mid-ranger-likely-to-arrive-in-71725589579605.html" onclick="ga('send', 'event', 'Widget-Trending-Stories',1,'tech.hindustantimes.com/mobile/news/iphone-se-4-launch-still-months-away-powerful-mid-ranger-likely-to-arrive-in-71725589579605.html',{'dimension7': 'Story_Listing_Page'})"> iPhone SE 4 launch still months away, powerful mid-ranger likely to arrive in…</a> </h3> <div class="imgWrapper"> <span class="fourRatioThree"></span> <img data-src="https://images.hindustantimes.com/tech/img/2024/09/06/414x233/iPhone_SE_4_1724987943521_1725589718894.jpg" src="" class="lazyload" alt="iPhone SE 4 launch still months away, powerful mid-ranger likely to arrive in…" /> </div> </div> <div class="parentWrapper"> <h3 class="title"> <a href="/mobile/news/apples-glowtime-event-on-9-september-these-products-including-iphone-se-4-are-not-expected-to-launch-71725512333608.html" onclick="ga('send', 'event', 'Widget-Trending-Stories',2,'tech.hindustantimes.com/mobile/news/apples-glowtime-event-on-9-september-these-products-including-iphone-se-4-are-not-expected-to-launch-71725512333608.html',{'dimension7': 'Story_Listing_Page'})"> Apple’s ‘Glowtime’ Event on 9 September: These products, including iPhone SE 4, are not expected to launch</a> </h3> <div class="imgWrapper"> <span class="fourRatioThree"></span> <img data-src="https://images.hindustantimes.com/tech/img/2024/09/05/414x233/iPhone_SE_4_1724987943521_1725512875965.jpg" src="" class="lazyload" alt="iPhone SE 4 launch likely in March: Apple Intelligence, 8GB RAM, at just Rs…" /> </div> </div> <div class="parentWrapper"> <h3 class="title"> <a href="/mobile/news/iphone-16-pro-must-improve-in-these-3-areas-and-i-say-this-after-using-iphone-15-pro-for-almost-a-year-71725430737657.html" onclick="ga('send', 'event', 'Widget-Trending-Stories',3,'tech.hindustantimes.com/mobile/news/iphone-16-pro-must-improve-in-these-3-areas-and-i-say-this-after-using-iphone-15-pro-for-almost-a-year-71725430737657.html',{'dimension7': 'Story_Listing_Page'})"> iPhone 16 Pro must improve in these 3 areas—And I say this after using iPhone 15 Pro for almost a year</a> </h3> <div class="imgWrapper"> <span class="fourRatioThree"></span> <img data-src="https://images.hindustantimes.com/tech/img/2024/09/04/414x233/iphone_16_pro_photos_1725430993713_1725431052986.jpeg" src="" class="lazyload" alt="Iphone 16 Pro launch date" /> </div> </div> <div class="parentWrapper"> <h3 class="title"> <a href="/web-stories/aadhaar-card-update-for-free-online-act-before-september-14-to-avoid-future-fees-71725539788423.html" onclick="ga('send', 'event', 'Widget-Trending-Stories',4,'tech.hindustantimes.com/web-stories/aadhaar-card-update-for-free-online-act-before-september-14-to-avoid-future-fees-71725539788423.html',{'dimension7': 'Story_Listing_Page'})"> Aadhaar Card Update for free online: Act before September 14 to avoid future fees</a> </h3> <div class="imgWrapper"> <span class="fourRatioThree"></span> <img data-src="https://images.hindustantimes.com/tech/img/2024/09/05/414x233/Aadhaar_Card_Update_for_free_online_1725540096815_1725540097087.jpg" src="" class="lazyload" alt="Aadhaar_Card_Update_for_free_online" /> </div> </div> <div class="parentWrapper"> <h3 class="title"> <a href="/tech/news/anil-kapoor-featured-in-times-100-most-influential-people-in-ai-cover-but-sam-altman-misses-out-here-s-why-71725600598682.html" onclick="ga('send', 'event', 'Widget-Trending-Stories',5,'tech.hindustantimes.com/tech/news/anil-kapoor-featured-in-times-100-most-influential-people-in-ai-cover-but-sam-altman-misses-out-here-s-why-71725600598682.html',{'dimension7': 'Story_Listing_Page'})"> Anil Kapoor featured in TIME's 100 Most Influential People in AI cover, but Sam Altman misses out: Here’s why</a> </h3> <div class="imgWrapper"> <span class="fourRatioThree"></span> <img data-src="https://images.hindustantimes.com/tech/img/2024/09/06/414x233/anil_kapoor_time_magazine_ai_cover_1725601280429_1725601280758.jpg" src="" class="lazyload" alt="Anil Kapoor has fought a battle against AI misrepresentation in New Delhi's high court." /> </div> </div> </div> <div class="trendingGadgetWrapper"> <h2 class="heading">Trending Gadgets</h2> <div class="tabLinksWrapper"> <a href="javascript:void(0);" class="active" data-current="Mobiles">Mobiles</a> <a href="javascript:void(0);" data-current="Laptops">Laptops</a> <a href="javascript:void(0);" data-current="Tablets">Tablets</a> </div> <div class="scrollArea"> <span class="leftArrow" style="display: none;"><img src="https://images.hindustantimes.com/tech/static/revamp/images/png/slider-arrow-right-white-bg.png" width="48" height="48" loading="lazy"/></span> <span class="rightArrow"><img src="https://images.hindustantimes.com/tech/static/revamp/images/png/slider-arrow-right-white-bg.png" width="48" height="48" loading="lazy"/></span> <div class="sliderWrapper scrollView" id="topHeaderProducts"> </div> </div> </div> </div> </div> </div> <footer class="footerMenuWrapper"> <div class="container"> <div class="footerLogoWrapper"> <div class="footerLogo"> <picture> <source srcset="https://images.hindustantimes.com/tech/static/revamp/images/webp/HTTech-logoTransparent@3x.webp" type="image/webp"> <source srcset="https://images.hindustantimes.com/tech/static/revamp/images/png/Httech-logo-transparent.png" type="image/png"> <img src="https://images.hindustantimes.com/tech/static/revamp/images/png/Httech-logo-transparent.png" alt="HT Tech News" width="135" height="39" loading="lazy"> </picture> </div> <div class="socialIcons"> <span> Connect with us: </span> <div class="d-flex"> <a href="https://whatsapp.com/channel/0029Va9iditJENxz27aoVF0k" title="WhatsApp channel" target="_blank" class="WtIcon" rel="noopener nofollow noreferrer"> <img class="not-hover" src="https://images.hindustantimes.com/tech/static/revamp/images/png/whatsapp.png" width="25" height="25" loading="lazy"> <img class="hover-effect" src="https://images.hindustantimes.com/tech/static/revamp/images/png/whatsapp-hover.png" width="25" height="25" loading="lazy"> </a> <a href="https://www.facebook.com/hindustantimestech" title="facebook" target="_blank" class="fbIcon" rel="noopener nofollow noreferrer"> <img class="not-hover" src="https://images.hindustantimes.com/tech/static/revamp/images/png/facebook.png" width="25" height="25" loading="lazy"> <img class="hover-effect" src="https://images.hindustantimes.com/tech/static/revamp/images/png/facebook-hover.png" width="25" height="25" loading="lazy"> </a> <a href="https://twitter.com/HTTech" title="twitter" target="_blank" title="twitter" class="twIcon" rel="noopener nofollow noreferrer"> <img class="not-hover" src="https://images.hindustantimes.com/tech/static/revamp/images/png/twitter.png" width="25" height="25" loading="lazy"> <img class="hover-effect" src="https://images.hindustantimes.com/tech/static/revamp/images/png/twitter-hover.png" width="25" height="25" loading="lazy"> </a> <a href="https://www.youtube.com/channel/UCUmhg3QldZiYoO9mKGpumBA" title="youtube" target="_blank" class="ytIcon" rel="noopener nofollow noreferrer"> <img class="not-hover" src="https://images.hindustantimes.com/tech/static/revamp/images/png/youtube.png" width="25" height="25" loading="lazy"> <img class="hover-effect" src="https://images.hindustantimes.com/tech/static/revamp/images/png/youtube-hover.png" width="25" height="25" loading="lazy"> </a> </div> </div> </div> <div class="downloadApp"> <div class="heading">Download the HT app to read<br> Tech and other stories:</div> <div class="AppDownloadLogo"> <a href="https://htapp.onelink.me/hoXK/zxzrmnwv" target="_blank" onclick="ga('send', 'event','App_Download','Google_play_store-Button_Click','tech.hindustantimes.com',{'dimension7': 'bookmark page'})" rel="noopener nofollow noreferrer"> <picture> <source srcset="https://images.hindustantimes.com/tech/static/revamp/images/webp/google-play-store2x.webp" type="image/webp"> <source srcset="https://images.hindustantimes.com/tech/static/revamp/images/png/google-play-store2x.png" type="image/png"> <img src="https://images.hindustantimes.com/tech/static/revamp/images/png/google-play-store2x.png" width="120" height="36" loading="lazy"> </picture> </a> <a href="https://htapp.onelink.me/hoXK/zxzrmnwv" target="_blank" onclick="ga('send', 'event','App_Download','App_Store-Button_Click','tech.hindustantimes.com',{'dimension7': 'bookmark page'})" rel="noopener nofollow noreferrer"> <picture> <source srcset="https://images.hindustantimes.com/tech/static/revamp/images/webp/app-store2x.webp" type="image/webp"> <source srcset="https://images.hindustantimes.com/tech/static/revamp/images/png/app-store2x.png" type="image/png"> <img src="https://images.hindustantimes.com/tech/static/revamp/images/png/app-store2x.png" width="120" height="36" loading="lazy"> </picture> </a> </div> </div> <div class="row footer-data"> <div class="footerMenus"> <div class="heading">Mobile Phones By Prices <img class="open" src="https://images.hindustantimes.com/tech/static/revamp/images/png/footer-open.png" width="20" height="20" loading="lazy"/> <img class="close" src="https://images.hindustantimes.com/tech/static/revamp/images/png/footer-close.png" width="20" height="20" loading="lazy"/> </div> <div class="toggleContent"> <a href="https://tech.hindustantimes.com/mobile-finder/best-phone-under-10000">Mobile Phones under 10000</a> <a href="https://tech.hindustantimes.com/mobile-finder/best-phone-under-15000">Mobile Phones under 15000</a> <a href="https://tech.hindustantimes.com/mobile-finder/best-phone-under-20000">Mobile Phones under 20000</a> <a href="https://tech.hindustantimes.com/mobile-finder/best-phone-under-25000">Mobile Phones under 25000</a> <a href="https://tech.hindustantimes.com/mobile-finder/best-phone-under-30000">Mobile Phones under 30000</a> <a href="https://tech.hindustantimes.com/mobile-finder/best-phone-under-35000">Mobile Phones under 35000</a> <a href="https://tech.hindustantimes.com/mobile-finder/best-phone-under-40000">Mobile Phones under 40000</a> </div> </div> <div class="footerMenus"> <div class="heading">Top Trends <img class="open" src="https://images.hindustantimes.com/tech/static/revamp/images/png/footer-open.png" width="20" height="20" loading="lazy"/> <img class="close" src="https://images.hindustantimes.com/tech/static/revamp/images/png/footer-close.png" width="20" height="20" loading="lazy"/> </div> <div class="toggleContent"> <a href="https://tech.hindustantimes.com/apple-iphone-15-pro-price-in-india-P999936968">Apple IPhone 15 pro</a> <a href="https://tech.hindustantimes.com/samsung-galaxy-s24-ultra-price-in-india-P999937438">Samsung Galaxy S24 Ultra</a> <a href="https://tech.hindustantimes.com/apple-iphone-15-pro-max-price-in-india-P999936819">Apple iPhone 15 Pro Max</a> <a href="https://tech.hindustantimes.com/samsung-galaxy-z-fold5-price-in-india-P999937766">Samsung Galaxy Z Fold5</a> <a href="https://tech.hindustantimes.com/apple-iphone-16-plus-price-in-india-P999938754">Apple iPhone 16 Plus India Price</a> <a href="https://tech.hindustantimes.com/apple-iphone-16-price-in-india-P999938217">Apple iPhone 16 Price in India</a> <a href="https://tech.hindustantimes.com/apple-iphone-16-pro-price-in-india-P999938220">Apple iPhone 16 Pro</a> <a href="https://tech.hindustantimes.com/samsung-galaxy-z-fold-4-5g-price-in-india-P999936738">Samsung Galaxy Z Fold 4 5G</a> <a href="https://tech.hindustantimes.com/samsung-galaxy-s25-ultra-price-in-india-P999938661">Samsung Galaxy S25 Ultra Price </a> <a href="https://tech.hindustantimes.com/google-pixel-9-pro-price-in-india-P999938719">Google Pixel 9 Pro</a> <a href="https://tech.hindustantimes.com/google-pixel-9a-price-in-india-P999939031">Google Pixel 9 A</a> <a href="https://tech.hindustantimes.com/google-pixel-9-pro-fold-price-in-india-P999939999">Google Pixel 9 Pro Fold</a> <a href="https://tech.hindustantimes.com/apple-iphone-16-ultra-price-in-india-P999938623">iPhone 16 ultra price in India</a> <a href="https://tech.hindustantimes.com/apple-iphone-16-pro-max-price-in-india-P999938221">iPhone 16 pro max price in India</a> <a href="https://tech.hindustantimes.com/apple-iphone-se-4-price-in-india-P00038263">Apple iPhone se4</a> <a href="https://tech.hindustantimes.com/samsung-galaxy-s25-price-in-india-P999938196">Samsung S25 Launch</a> <a href="https://tech.hindustantimes.com/web-stories/samsung-galaxy-unpacked-2025-know-when-and-where-to-watch-live-stream-71737537080150.html">Samsung Galaxy Unpacked Event</a> </div> </div> <div class="footerMenus"> <div class="heading">TRENDING HOW TO <img class="open" src="https://images.hindustantimes.com/tech/static/revamp/images/png/footer-open.png" width="20" height="20" loading="lazy"/> <img class="close" src="https://images.hindustantimes.com/tech/static/revamp/images/png/footer-close.png" width="20" height="20" loading="lazy"/> </div> <div class="toggleContent"> <a href="https://tech.hindustantimes.com/how-to/aipowered-whispp-app-can-recreate-your-voice-a-boon-for-people-with-disabilities-know-how-it-works-71709099159047.html">How AI-powered Whispp app is a boon for people with disabilities</a> <a href="https://tech.hindustantimes.com/how-to/emojis-can-have-multiple-meanings-says-whatsapp-71658132557312.html">How to Get Emojis on WhatsApp</a> <a href="https://tech.hindustantimes.com/how-to/how-to-delete-your-facebook-account-permanently-71625749653331.html">How to delete your Facebook account permanently</a> <a href="https://tech.hindustantimes.com/how-to/how-to-restore-your-deleted-instagram-posts-71612600451673.html">How to restore your deleted Instagram posts</a> <a href="https://tech.hindustantimes.com/how-to/do-you-know-how-to-earn-money-on-youtube-make-online-videos-pay-71634116596899.html">How to earn money on YouTube</a> </div> </div> <div class="footerMenus"> <div class="heading">Categories <img class="open" src="https://images.hindustantimes.com/tech/static/revamp/images/png/footer-open.png" width="20" height="20" loading="lazy"/> <img class="close" src="https://images.hindustantimes.com/tech/static/revamp/images/png/footer-close.png" width="20" height="20" loading="lazy"/> </div> <div class="toggleContent"> <a href="https://tech.hindustantimes.com/latest-news">Latest News</a> <a href="https://tech.hindustantimes.com/tech/news">Tech News</a> <a href="https://tech.hindustantimes.com/tv">TV</a> <a href="https://tech.hindustantimes.com/tv/news">TV News</a> <a href="https://tech.hindustantimes.com/tv/reviews">TV Reviews</a> <a href="https://tech.hindustantimes.com/home-appliances">Home Appliances</a> <a href="https://tech.hindustantimes.com/how-to">How To</a> <a href="https://tech.hindustantimes.com/videos">Videos</a> <a href="https://tech.hindustantimes.com/photos">Photos</a> <a href="https://tech.hindustantimes.com/gaming">Gaming</a> <a href="https://tech.hindustantimes.com/wearables">Wearables</a> <a href="https://tech.hindustantimes.com/wearables/news">Wearable News</a> <a href="https://tech.hindustantimes.com/wearables/reviews">Wearable Reviews</a> <a href="https://tech.hindustantimes.com/laptops-pc">Laptops</a> <a href="https://tech.hindustantimes.com/laptops-pc/news">Laptop News</a> <a href="https://tech.hindustantimes.com/laptops-pc/reviews">Laptops Review</a> <a href="https://tech.hindustantimes.com/mobile">Mobile</a> <a href="https://tech.hindustantimes.com/mobile/news">Mobile News</a> <a href="https://tech.hindustantimes.com/mobile/reviews">Mobile reviews</a> <a href="https://tech.hindustantimes.com/web-stories">Web Stories</a> <a href="https://tech.hindustantimes.com/mobile-finder">Mobile Finder</a> <a href="https://tech.hindustantimes.com/compare-mobile-phones">Compare Mobile Phones</a> <a href="https://tech.hindustantimes.com/laptop-finder">Laptop Finder</a> <a href="https://tech.hindustantimes.com/compare-laptops">Laptop Comparison</a> <a href="https://tech.hindustantimes.com/tablet-finder">Tablet Finder</a> <a href="https://tech.hindustantimes.com/compare-tablets">Compare Tablets</a> <a href="https://tech.hindustantimes.com/smart-watches">Smartwatches</a> <a href="https://tech.hindustantimes.com/fitness-bands">Fitness Band</a> </div> </div> <div class="footerMenus"> <div class="heading">Popular Mobile Phone Brand <img class="open" src="https://images.hindustantimes.com/tech/static/revamp/images/png/footer-open.png" width="20" height="20" loading="lazy"/> <img class="close" src="https://images.hindustantimes.com/tech/static/revamp/images/png/footer-close.png" width="20" height="20" loading="lazy"/> </div> <div class="toggleContent"> <a href="https://tech.hindustantimes.com/mobile-finder/samsung">Samsung Mobiles</a> <a href="https://tech.hindustantimes.com/mobile-finder/apple">Apple Phones</a> <a href="https://tech.hindustantimes.com/mobile-finder/oppo">Oppo Mobiles</a> <a href="https://tech.hindustantimes.com/mobile-finder/nokia">Nokia Mobiles</a> <a href="https://tech.hindustantimes.com/mobile-finder/realme">Realme Mobiles</a> <a href="https://tech.hindustantimes.com/mobile-finder/oneplus">Oneplus Mobiles</a> <a href="https://tech.hindustantimes.com/mobile-finder/xiaomi">Xiaomi Mobiles</a> <a href="https://tech.hindustantimes.com/mobile-finder/vivo">Vivo Mobiles</a> <a href="https://tech.hindustantimes.com/mobile-finder/lg">LG Mobiles</a> <a href="https://tech.hindustantimes.com/mobile-finder/micromax">Micromax Mobiles</a> <a href="https://tech.hindustantimes.com/mobile-finder/sony">Sony Mobiles</a> <a href="https://tech.hindustantimes.com/mobile-finder/lenovo">Lenovo Mobiles</a> </div> </div> <div class="footerMenus"> <div class="heading">TRENDING TOPICS<img class="open" src="https://images.hindustantimes.com/tech/static/revamp/images/png/footer-open.png" width="20" height="20" loading="lazy"/><img class="close" src="https://images.hindustantimes.com/tech/static/revamp/images/png/footer-close.png" width="20" height="20" loading="lazy"/></div> <div class="toggleContent"> <a href="/tech/news/hisense-c2-ultra-4k-mini-laser-projector-launched-in-india-check-features-availability-and-more-71728644588195.html">Hisense C2 Ultra 4K mini laser projector launched in India: Check features, availability and more</a> <a href="/tech/news/reliance-jio-rolls-out-affordable-isd-plans-starting-at-rs-39-with-new-benefits-and-offers-all-details-71728639343826.html">Reliance Jio rolls out affordable ISD plans starting at <span class='webrupee'>₹</span>39 with new benefits and offers - All details</a> <a href="/gaming/news/garena-free-fire-max-redeem-codes-for-october-18-diwali-faded-wheel-event-71729219475333.html">Garena Free Fire MAX redeem codes for October 18: Diwali Faded Wheel event</a> <a href="/gaming/news/garena-free-fire-max-redeem-codes-for-october-21-check-out-diwali-lucky-draw-event-71729479155017.html">Garena Free Fire MAX redeem codes for October 21: Check out Diwali Lucky Draw event</a> <a href="/gaming/news/gta-v-pc-cheats-list-of-all-gta-v-pc-cheat-codes-71666014112325.html">GTA V PC Cheats: List of all GTA V PC Cheat Codes</a> <a href="/tech/news/bored-of-your-instagram-explore-feed-here-s-how-you-can-change-reset-it-71625830033207.html">Bored of your Instagram Explore feed? Here’s how you can change, reset it</a> <a href="/mobile/news/iphone-se-4-dummy-units-leaked-ahead-of-launch-with-apparent-two-models-71729483343389.html">iPhone SE 4 dummy units leaked ahead of launch, with apparent two models</a> <a href="/gaming/news/garena-free-fire-redeem-codes-for-october-21-access-latest-codes-now-71634783051455.html">Garena Free Fire redeem codes for October 21: Access latest codes now</a> <a href="/mobile/news/iphone-se-4-launch-inching-closer-why-it-may-be-a-big-deal-for-apple-71729139797579.html">iPhone SE 4 launch inching closer: Why it may be a big deal for Apple</a> <a href="/mobile/news/iqoo-neo-10-and-neo-10-pro-with-snapdragon-8-gen-3-dimensity-9400-expected-to-launch-soon-all-details-71729238581802.html">iQOO Neo 10 and Neo 10 Pro with Snapdragon 8 Gen 3, Dimensity 9400 expected to launch soon- All details</a> </div> </div> <div class="footerMenus"> <div class="heading">HOW TO<img class="open" src="https://images.hindustantimes.com/tech/static/revamp/images/png/footer-open.png" width="20" height="20" loading="lazy"/><img class="close" src="https://images.hindustantimes.com/tech/static/revamp/images/png/footer-close.png" width="20" height="20" loading="lazy"/></div> <div class="toggleContent"> <a href="/how-to/how-to-restore-deleted-whatsapp-chats-a-step-by-step-guide-71646976529497.html">How to restore deleted WhatsApp chats: Step-by-step guide</a> <a href="/how-to/play-garena-free-fire-like-a-pro-get-100-headshot-accuracy-with-this-one-trick-71694744329548.html">Play Garena Free Fire like a Pro! Get 100% headshot accuracy with this one trick</a> <a href="/how-to/garena-free-fire-max-redeem-codes-for-october-21-don-t-miss-the-paradise-defender-skin-71666318911368.html">Garena Free Fire MAX Redeem Codes for October 21: Don't miss the Paradise Defender skin</a> <a href="/how-to/android-tips-and-tricks-how-to-empty-trash-on-android-smartphone-to-make-it-run-stunningly-fast-71652970113855.html">Android tips and tricks: How to empty Trash on Android smartphone to make it run stunningly fast</a> <a href="/how-to/this-secret-whatsapp-trick-will-let-you-chat-with-those-who-blocked-you-71645511152204.html">This SECRET WhatsApp trick will let you chat with those who blocked you</a> <a href="/how-to/run-two-whatsapp-accounts-on-your-android-smartphone-here-is-how-71672654154376.html">Run two WhatsApp accounts on your Android smartphone; here is how</a> <a href="/how-to/how-to-restore-deleted-whatsapp-photos-4-tips-and-tricks-71640951140272.html">How to restore deleted WhatsApp photos: 4 tips and tricks</a> <a href="/how-to/garena-free-fire-redeem-codes-for-october-21-from-emotes-to-free-diamonds-check-the-rewards-71666316930299.html">Garena Free Fire Redeem codes for October 21: From emotes to free diamonds, check the rewards</a> <a href="/how-to/how-to-view-someone-s-whatsapp-status-secretly-71660740840403.html">How to view someone’s WhatsApp status secretly</a> <a href="/how-to/garena-free-fire-redeem-codes-for-october-21-get-amazing-rewards-and-check-out-the-smash-top-up-event-71697861801728.html">Garena Free Fire Redeem Codes for October 21: Get amazing rewards and check out the Smash Top-Up event</a> </div> </div> <div class="footerMenus"> <div class="heading">BEST DEAL<img class="open" src="https://images.hindustantimes.com/tech/static/revamp/images/png/footer-open.png" width="20" height="20" loading="lazy"/><img class="close" src="https://images.hindustantimes.com/tech/static/revamp/images/png/footer-close.png" width="20" height="20" loading="lazy"/></div> <div class="toggleContent"> <a href="/tech/news/air-purifiers-to-buy-in-india-for-healthy-and-clean-air-here-are-top-5-picks-71729256487263.html">Air purifiers to buy in India for healthy and clean air- Here are top 5 picks</a> <a href="/mobile/news/5-best-smartphones-for-your-eyes-xiaomi-13-honor-90-to-motorola-edge-plus-check-list-71705903324128.html">5 best smartphones for your eyes: Xiaomi 13, Honor 90 to Motorola Edge Plus, check list</a> <a href="/wearables/news/top-10-smartwatch-brands-leading-the-market-with-innovation-71708588108325.html">Top 10 smartwatch brands: Leading the market with innovation</a> <a href="/home-appliances/news/japanese-smart-toilets-in-india-starting-price-features-and-all-details-to-know-71722830092556.html">Japanese toilets in India: TOTO washlet starting price, features and all details to know</a> <a href="/laptops-pc/news/amazon-diwali-sale-2024-get-up-to-40-off-on-asus-vivobook-s-16-oled-to-lenovo-yoga-slim-6-and-more-laptops-71727597587070.html">Amazon Diwali Sale 2024: Get up to 40% off on ASUS Vivobook S 16 OLED to Lenovo Yoga Slim 6 and more laptops</a> <a href="/gaming/news/4-best-gaming-mechanical-keyboards-under-rs-7-000-royal-kludge-razer-and-more-71726416464946.html">4 best gaming mechanical keyboards under <span class='webrupee'>₹</span>7,000: Royal Kludge, Razer and more</a> <a href="/tech/news/10-best-tws-earbuds-from-jbl-to-buy-from-amazon-71725599104687.html">10 best TWS earbuds from JBL to buy from Amazon</a> <a href="/tech/news/boat-noise-fire-boltt-and-other-smartwatches-with-best-features-under-rs-2000-on-amazon-71723464131905.html">Boat, Noise, Fire-Boltt and other smartwatches with best features under Rs. 2000 on Amazon</a> <a href="/mobile/news/5-best-camera-centric-smartphones-to-capture-memories-this-festive-season-iphone-16-pixel-9-pro-xl-and-more-71728906295444.html">5 best camera-centric smartphones to capture memories this festive season: iPhone 16, Pixel 9 Pro XL and more</a> <a href="/tech/news/beat-the-pollution-this-diwali-season-check-top-5-air-purifiers-under-rs-20000-71729144596267.html">Beat the pollution this Diwali season: Check top 5 air purifiers under <span class='webrupee'>₹</span>20000</a> </div> </div> <div class="footerMenus"> <div class="heading">Popular Mobiles<img class="open" src="https://images.hindustantimes.com/tech/static/revamp/images/png/footer-open.png" width="20" height="20" loading="lazy"/><img class="close" src="https://images.hindustantimes.com/tech/static/revamp/images/png/footer-close.png" width="20" height="20" loading="lazy"/></div> <div class="toggleContent"> <a href="/samsung-galaxy-s25-ultra-price-in-india-P999938661">Samsung Galaxy S25 Ultra</a> <a href="/vivo-x200-pro-price-in-india-P999940269">Vivo X200 Pro</a> <a href="/xiaomi-14-ultra-price-in-india-P999938904">Xiaomi 14 Ultra</a> <a href="/oneplus-13-price-in-india-P999938650">OnePlus 13</a> <a href="/vivo-x200-price-in-india-P999940268">Vivo X200</a> <a href="/samsung-galaxy-s25-price-in-india-P999938196">Samsung Galaxy S25</a> <a href="/samsung-galaxy-s25-plus-price-in-india-P999938702">Samsung Galaxy S25 Plus</a> <a href="/oppo-find-x8-pro-price-in-india-P999940311">OPPO Find X8 Pro</a> <a href="/oppo-find-x8-price-in-india-P999940310">OPPO Find X8</a> <a href="/apple-iphone-16-pro-max-price-in-india-P999938221">Apple IPhone 16 Pro Max</a> </div> </div> <div class="footerMenus"> <div class="heading">Latest gadget<img class="open" src="https://images.hindustantimes.com/tech/static/revamp/images/png/footer-open.png" width="20" height="20" loading="lazy"/><img class="close" src="https://images.hindustantimes.com/tech/static/revamp/images/png/footer-close.png" width="20" height="20" loading="lazy"/></div> <div class="toggleContent"> <a href="/samsung-galaxy-s25-price-in-india-P999938196">Samsung Galaxy S25</a> <a href="/realme-14-pro-plus-price-in-india-P999940526">Realme 14 Pro Plus</a> <a href="/oneplus-13r-price-in-india-P999938668">OnePlus 13R</a> <a href="/oneplus-13-price-in-india-P999938650">OnePlus 13</a> </div> <div class="toggleContent"> <a href="/lenovo-loq-83dv007gin-laptop-core-i5-13th-gen-16-gb-512-gb-ssd-windows-11-6-gb-price-in-india-P1000162845">Lenovo LOQ (83DV007GIN) Laptop (Core I5 13th Gen/16 GB/512 GB SSD/Windows 11/6 GB)</a> <a href="/samsung-galaxy-book-4-360-np750qgk-kg2in-laptop-core-7-series-1-16-gb-512-gb-ssd-windows-11-price-in-india-P1000160702">Samsung Galaxy Book 4 360 NP750QGK-KG2IN Laptop (Core 7 Series 1 /16 GB/512 GB SSD/Windows 11)</a> <a href="/asus-zenbook-14-um3402ya-kp741ws-laptop-amd-octa-core-ryzen-7-16-gb-512-gb-ssd-windows-11-price-in-india-P1000155362">Asus Zenbook 14 UM3402YA-KP741WS Laptop (AMD Octa Core Ryzen 7/16 GB/512 GB SSD/Windows 11)</a> <a href="/asus-vivobook-16-x1605va-mb946ws-laptop-core-i9-13th-gen-16-gb-512-gb-ssd-windows-11-price-in-india-P1000159311">Asus VivoBook 16 X1605VA-MB946WS Laptop (Core I9 13th Gen/16 GB/512 GB SSD/Windows 11)</a> </div> <div class="toggleContent"> <a href="/smart-watches/garmin-vivomove-3-price-in-india-P0000137573">Garmin Vivomove 3</a> <a href="/smart-watches/fossil-gen-6-wellness-price-in-india-P0000153531">Fossil Gen 6 Wellness</a> <a href="/smart-watches/garmin-instinct-2s-solar-price-in-india-P0000149678">Garmin Instinct 2S Solar</a> <a href="/smart-watches/fastrack-revoltt-fs1-price-in-india-P0000155407">Fastrack Revoltt FS1</a> </div> <div class="toggleContent"> <a href="/fitness-bands/fastrack-reflex-3-0-price-in-india-P0000142647">Fastrack Reflex 3.0</a> <a href="/fitness-bands/fitbit-charge-price-in-india-P0000150964">Fitbit Charge</a> <a href="/fitness-bands/lava-befit-price-in-india-P0000142111">Lava BeFIT</a> <a href="/fitness-bands/amazfit-band-7-price-in-india-P0000152001">Amazfit Band 7</a> </div> </div> </div> <!--static menu items start here--> <div class="staticMenuWrapper"> <a href="/about-us">About Us</a> <a href="/contact-us">Contact Us</a> <a href="/terms-of-use">Terms of Use</a> <a href="/privacy-policy">Privacy Policy</a> <a href="/rss">RSS</a> <a href="/sitemapweb">Sitemap</a> <a href="/author">HT Tech Authors</a> </div> <!--static menu items end here--> </div> <div class="allLogos"> <div class="container"> <!--for desktop --> <div class="row"> <a href="https://www.hindustantimes.com" target="_blank"> <picture> <source srcset="https://images.hindustantimes.com/tech/static/revamp/images/webp/ht-logo.webp" type="image/webp"> <source srcset="https://images.hindustantimes.com/tech/static/revamp/images/png/ht-logo.png" type="image/png"> <img src="https://images.hindustantimes.com/tech/static/revamp/images/png/ht-logo.png" alt="HindustanTimes" width="202" height="37" loading="lazy"> </picture> </a> <a href="https://www.livemint.com" target="_blank"> <picture> <source srcset="https://images.hindustantimes.com/tech/static/revamp/images/webp/mint-logo.webp" type="image/webp"> <source srcset="https://images.hindustantimes.com/tech/static/revamp/images/png/mint-logo.png" type="image/png"> <img src="https://images.hindustantimes.com/tech/static/revamp/images/png/mint-logo.png" alt="Mint" width="79" height="28" loading="lazy"> </picture> </a> <a href="https://www.livehindustan.com" target="_blank"> <picture> <source srcset="https://images.hindustantimes.com/tech/static/revamp/images/webp/live-hindustan-logo.webp" type="image/webp"> <source srcset="https://images.hindustantimes.com/tech/static/revamp/images/png/live-hindustan-logo.png" type="image/png"> <img src="https://images.hindustantimes.com/tech/static/revamp/images/png/live-hindustan-logo.png" alt="Live Hindustan" width="122" height="31" loading="lazy"> </picture> </a> <a href="https://lifestyle.livemint.com" target="_blank"> <picture> <source srcset="https://images.hindustantimes.com/tech/static/revamp/images/webp/mint-lounge-logo.webp" type="image/webp"> <source srcset="https://images.hindustantimes.com/tech/static/revamp/images/png/mint-lounge-logo.png" type="image/png"> <img src="https://images.hindustantimes.com/tech/static/revamp/images/png/mint-lounge-logo.png" alt="Mint lounge" width="87" height="26" loading="lazy"> </picture> </a> <a href="https://www.fabplay.in/" target="_blank" rel="noopener nofollow noreferrer"> <img src="https://images.hindustantimes.com/tech/static/revamp/images/png/logo-fab-play.png" alt="fabplay" width="62" height="27" loading="lazy"> </a> <a href="https://auto.hindustantimes.com/" target="_blank"> <picture> <source srcset="https://images.hindustantimes.com/tech/static/revamp/images/webp/ht-auto-logo.webp" type="image/webp"> <source srcset="https://images.hindustantimes.com/tech/static/revamp/images/png/ht-auto-logo.png" type="image/png"> <img src="https://images.hindustantimes.com/tech/static/revamp/images/png/ht-auto-logo.png" alt="HT Auto" width="93" height="29" loading="lazy"> </picture> </a> </div> </div> </div> <div class="container"> <div class="caption"> © 2025 Tech HindustanTimes </div> </div> <!--new design ad code /1055314/HT_TECH_Desk_Home_Bottom_300x250_Multisize --> <div id="adRefresh" class="ad_refreshBlck"></div> </footer> <!--footer end here--> <div class="menuOverlay"></div> <script> function appendSidebar(){document.getElementById('sidebar').innerHTML = ` <div class="header"> <picture> <source srcset="https://images.hindustantimes.com/tech/static/revamp/images/webp/HTTech-logoTransparent@3x.webp" type="image/webp"> <source srcset="https://images.hindustantimes.com/tech/static/revamp/images/png/Httech-logo-transparent.png" type="image/png"> <img src="https://images.hindustantimes.com/tech/static/revamp/images/png/Httech-logo-transparent.png" width="104" height="30" alt="HT Tech News" > </picture> <button role="button" class="closeIcon"><img src="https://images.hindustantimes.com/tech/static/revamp/images/png/header-search-close.png" width="24" height="24" /></button> </div> <div class="body"> <div class="ul" id="savedArticles" style="display: none;" ><div class="li"><a href="/common/bookmark/article" class="savedArticle"><img src='https://images.hindustantimes.com/tech/static/revamp/images/png/saveArticle.png' width='12' height='17' loading='lazy' /> Saved Articles</a></div></div> <label>Top Sections</label> <div class="ul"> <div class="li"><a href="/tech/news" data-text="News"></a> </div> <div class="li dropDownMenuLi"> <a href="/mobile" data-text="Mobile"></a><button class="dropdownBtn"><img src="https://images.hindustantimes.com/tech/static/revamp/images/png/sidebar-expand-more.png" width="24" height="24" /></button> <div class="ul dropDownMenuUl"> <div class="li"> <a href="/mobile/news" data-text="Mobile News"></a></div> <div class="li"> <a href="/mobile/reviews" data-text="Mobile Reviews"></a></div> <div class="li"> <a href="/mobile-finder" data-text="Mobile Finder"></a></div> <div class="li"><a href="/compare-mobile-phones" data-text="Mobile Comparison"></a></div> <div class="li"> <a title="Find all the latest and most popular Mobile Finder with a price list" href="/gadget-recommender/mobile" data-text="Mobile Recommender"></a></div> </div> </div> <div class="li dropDownMenuLi"> <a href="/laptops-pc" data-text="Laptops PC"></a><button class="dropdownBtn"><img src="https://images.hindustantimes.com/tech/static/revamp/images/png/sidebar-expand-more.png" width="24" height="24" /></button> <div class="ul dropDownMenuUl"> <div class="li"> <a href="/laptops-pc/news" data-text="Laptops/PC News"></a></div> <div class="li"> <a href="/laptops-pc/reviews" data-text="Laptops/PC Reviews"></a></div> <div class="li"> <a href="/laptop-finder" data-text="Laptop Finder"></a></div> <div class="li"><a href="/compare-laptops" data-text="Laptop Comparison"></a></div> <div class="li"> <a title="Find all the latest and most popular Laptop Finder with a price list" href="/gadget-recommender/laptop" data-text="Laptop Recommender"></a></div> </div> </div> <div class="li dropDownMenuLi"> <a href="/gaming" data-text="Gaming"></a><button class="dropdownBtn"><img src="https://images.hindustantimes.com/tech/static/revamp/images/png/sidebar-expand-more.png" width="24" height="24" /></button> <div class="ul dropDownMenuUl"> <div class="li"> <a href="/gaming/news" data-text="Gaming News"></a></div> <div class="li"> <a href="/gaming/reviews" data-text="Gaming Reviews"></a></div> </div> </div> <div class="li dropDownMenuLi"> <a href="/tv" data-text="TV"></a><button class="dropdownBtn"><img src="https://images.hindustantimes.com/tech/static/revamp/images/png/sidebar-expand-more.png" width="24" height="24" /></button> <div class="ul dropDownMenuUl"> <div class="li"> <a href="/tv/news" data-text="TV News"></a></div> <div class="li"> <a href="/tv/reviews" data-text="TV Reviews"></a></div> </div> </div> <div class="li dropDownMenuLi"> <a href="javascript:void(0)" class="dropdownToggle" data-text="Gadgets"></a><button class="dropdownBtn"><img src="https://images.hindustantimes.com/tech/static/revamp/images/png/sidebar-expand-more.png" width="24" height="24" /></button> <div class="ul dropDownMenuUl"> <div class="li"> <a href="/mobile-finder" data-text="Mobile Finder"></a></div> <div class="li"> <a href="/laptop-finder" data-text="Laptop Finder"></a></div> <div class="li"> <a href="/tablet-finder" data-text="Tablet Finder"></a></div> </div> </div> <div class="li dropDownMenuLi"> <a href="/wearables" class="dropdownToggle newTag" data-text="Wearables"></a><button class="dropdownBtn"><img src="https://images.hindustantimes.com/tech/static/revamp/images/png/sidebar-expand-more.png" width="24" height="24" /></button> <div class="ul dropDownMenuUl"> <div class="li"> <a href="/wearables/news" data-text="Wearables News"></a></div> <div class="li"> <a href="/wearables/reviews" data-text="Wearables Reviews"></a></div> <div class="li"> <a href="/smart-watches" data-text="Smart Watches"></a></div> <div class="li"> <a href="/fitness-bands" data-text="Fitness Bands"></a></div> </div> </div> <div class="li dropDownMenuLi"> <a href="javascript:void(0)" class="dropdownToggle" data-text="Compare"></a><button class="dropdownBtn"><img src="https://images.hindustantimes.com/tech/static/revamp/images/png/sidebar-expand-more.png" width="24" height="24" /></button> <div class="ul dropDownMenuUl"> <div class="li"><a href="/compare-mobile-phones" data-text="Mobile Comparison"></a></div> <div class="li"><a href="/compare-laptops" data-text="Laptop Comparison"></a></div> <div class="li"><a href="/compare-tablets" data-text="Tablet Comparison"></a></div> </div> </div> <div class="li"><a href="/photos" data-text="Photos"></a></div> <div class="li"><a href="/videos" data-text="Videos"></a></div> <div class="li"><a href="/web-stories" data-text="Web Stories"></a></div> <div class="li"> <a href="/how-to" class="" data-text="How To"> </a> </div> <div class="li dropDownMenuLi"> <a href="javascript:void(0)" class="dropdownToggle" data-text="More"></a><button class="dropdownBtn"><img src="https://images.hindustantimes.com/tech/static/revamp/images/png/sidebar-expand-more.png" width="24" height="24" /></button> <div class="ul dropDownMenuUl"> <div class="li"><a href="/events/samsung-unpacked" data-text="Samsung Event"></a></div> <div class="li"><a href="/events/apple-september-event" title="Get to Know more about Apple event News from India and around the world." data-text="Apple Event"></a></div> <div class="li"><a href="/articles-for-you" data-text="For You"><span></span></a></div> <div class="li"><a href="/home-appliances" data-text="Home Appliances"></a></div> <div class="li"><a href="/brand-stories" data-text="Brand Stories"></a></div> <div class="li"> <a title="Find all the latest and most popular Mobile Finder with a price list" href="/gadget-recommender/mobile" data-text="Mobile Recommender"></a></div> <div class="li"> <a title="Find all the latest and most popular Laptop Finder with a price list" href="/gadget-recommender/laptop" data-text="Laptop Recommender"></a></div> <div class="li"> <a title="Find all the latest and most popular Tablet Finder with a price list" href="/gadget-recommender/tablet" data-text="Tablet Recommender"></a></div> </div> </div> </div> <label>Explore Tech</label> <div class="ul"> <div class="li"><a href="/about-us" data-text="About Us"></a></div> <div class="li"><a href="/contact-us" data-text="Contact Us"></a></div> <div class="li"><a href="/sitemapweb" data-text="Sitemap"></a></div> <div class="li"><a href="/rss" data-text="RSS"></a></div> <div class="li"><a href="/terms-of-use" data-text="Terms of Use"></a></div> <div class="li"><a href="/privacy-podivcy" data-text="Privacy Podivcy"></a></div> <div class="li"><a href="/author" data-text="HT Tech Authors"></a></div> </div> <p> Copyright © HT Media Limited <br> All rights reserved. </p> </div> `; } </script><script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script> <script async src="/js/revamp/js/min/all.min.js?v=13.02.2025"></script> <script async src="/js/revamp/js/min/GA4Events.min.js?v=13.02.2025"></script> <script async src="/js/revamp/js/min/ads.min.js?v=13.02.2025"></script> <script async src="/js/revamp/js/eventDisableScript.js?v=13.02.2025"></script> <script async src="/js/revamp/js/min/bookmark.min.js?v=13.02.2025"></script> </body> </html>