CINXE.COM

details-daten-flat - Tarifdetails - Home ReSo Mobile

<!DOCTYPE html><html lang="de"> <head><meta charset="UTF-8" /> <meta name="dsl-nk-config-version" content="6.220.23"><meta name="dsl-nk-config-branch" content="RELEASE"><meta name="dsl-bk-config-version" content="8.37.44"><meta name="dsl-bk-config-branch" content="RELEASE"><meta name="mobile-bk-config-version" content="48.25.16"><meta name="mobile-bk-config-branch" content="RELEASE"><meta name="mobile-nk-config-version" content="40.27.14"><meta name="mobile-nk-config-branch" content="RELEASE"><meta name="accessory-config-version" content="1.4.22"><meta name="accessory-config-branch" content="RELEASE"><meta name="shop-scope" content="MOBILE_NK"> <meta name="viewport" content="initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no, width=device-width, shrink-to-fit=no" /> <meta name="workspacename" content="live" /> <meta name="application-version" content="2.0.3767_I.7eeeeec7" /> <meta name="neos-version" content="8.3" /> <meta name="format-detection" content="telephone=no" /> <meta http-equiv="Content-Language" content="de-DE" /> <meta name="copyright" content="(c)2001-2023 1&amp;1 Telecom GmbH" /> <meta class="swiftype" name="body" data-type="text" content="" /> <meta name="google-site-verification" content="SKKW_ze1IBK_MDwbR_HfVQG1YBJ74dtbsHfAqHJhxLw" /> <meta name="google-adsense-account" content="sites-7654151434925350" /> <title>details-daten-flat - Tarifdetails - Home ReSo Mobile</title><meta name="robots" content="index,follow" /> <link rel="preconnect" href="https://tags.tiqcdn.com" /> <link rel="dns-prefetch" href="https://tags.tiqcdn.com" /> <link rel="preconnect" href="https://apps.mypurecloud.de/" /> <link rel="dns-prefetch" href="https://apps.mypurecloud.de/" /> <link rel="preload" href="/_Resources/Static/Packages/ONEANDONE.NNodeTypes/1739887937/Fonts/1und1-web-sans-57-condensed.woff2?bust=3" as="font" type="font/woff2" crossorigin> <link rel="preload" href="/_Resources/Static/Packages/ONEANDONE.NNodeTypes/1739887937/Fonts/1und1-web-sans-77-90-black-condensed.woff2?bust=3" as="font" type="font/woff2" crossorigin> <link rel="preload" href="/_Resources/Static/Packages/ONEANDONE.NNodeTypes/1739887937/Fonts/1und1-web-sans-77-black-condensed.woff2?bust=3" as="font" type="font/woff2" crossorigin> <link rel="preload" href="/_Resources/Static/Packages/ONEANDONE.NNodeTypes/1739887937/Fonts/1und1-web-sans-87-extra-black-condensed.woff2?bust=3" as="font" type="font/woff2" crossorigin> <script id="webcomponents-loader.js">/** * @license * Copyright (c) 2018 The Polymer Project Authors. All rights reserved. * This code may only be used under the BSD style license found at http://polymer.github.io/LICENSE.txt * The complete set of authors may be found at http://polymer.github.io/AUTHORS.txt * The complete set of contributors may be found at http://polymer.github.io/CONTRIBUTORS.txt * Code distributed by Google as part of the polymer project is also * subject to an additional IP rights grant found at http://polymer.github.io/PATENTS.txt */ (function() { 'use strict'; /** * Basic flow of the loader process * * There are 4 flows the loader can take when booting up * * - Synchronous script, no polyfills needed * - wait for `DOMContentLoaded` * - fire WCR event, as there could not be any callbacks passed to `waitFor` * * - Synchronous script, polyfills needed * - document.write the polyfill bundle * - wait on the `load` event of the bundle to batch Custom Element upgrades * - wait for `DOMContentLoaded` * - run callbacks passed to `waitFor` * - fire WCR event * * - Asynchronous script, no polyfills needed * - wait for `DOMContentLoaded` * - run callbacks passed to `waitFor` * - fire WCR event * * - Asynchronous script, polyfills needed * - Append the polyfill bundle script * - wait for `load` event of the bundle * - batch Custom Element Upgrades * - run callbacks pass to `waitFor` * - fire WCR event */ var polyfillsLoaded = false; var whenLoadedFns = []; var allowUpgrades = false; var flushFn; function fireEvent() { window.WebComponents.ready = true; document.dispatchEvent(new CustomEvent('WebComponentsReady', { bubbles: true })); } function batchCustomElements() { if (window.customElements && customElements.polyfillWrapFlushCallback) { customElements.polyfillWrapFlushCallback(function (flushCallback) { flushFn = flushCallback; if (allowUpgrades) { flushFn(); } }); } } function asyncReady() { batchCustomElements(); ready(); } function ready() { // bootstrap <template> elements before custom elements if (window.HTMLTemplateElement && HTMLTemplateElement.bootstrap) { HTMLTemplateElement.bootstrap(window.document); } polyfillsLoaded = true; runWhenLoadedFns().then(fireEvent); } function runWhenLoadedFns() { allowUpgrades = false; var fnsMap = whenLoadedFns.map(function(fn) { return fn instanceof Function ? fn() : fn; }); whenLoadedFns = []; return Promise.all(fnsMap).then(function() { allowUpgrades = true; flushFn && flushFn(); }).catch(function(err) { console.error(err); }); } window.WebComponents = window.WebComponents || {}; window.WebComponents.ready = window.WebComponents.ready || false; window.WebComponents.waitFor = window.WebComponents.waitFor || function(waitFn) { if (!waitFn) { return; } whenLoadedFns.push(waitFn); if (polyfillsLoaded) { runWhenLoadedFns(); } }; window.WebComponents._batchCustomElements = batchCustomElements; var name = 'webcomponents-loader.js'; // Feature detect which polyfill needs to be imported. var polyfills = []; if (!('attachShadow' in Element.prototype && 'getRootNode' in Element.prototype) || (window.ShadyDOM && window.ShadyDOM.force)) { polyfills.push('sd'); } if (!window.customElements || window.customElements.forcePolyfill) { polyfills.push('ce'); } var needsTemplate = (function() { // no real <template> because no `content` property (IE and older browsers) var t = document.createElement('template'); if (!('content' in t)) { return true; } // broken doc fragment (older Edge) if (!(t.content.cloneNode() instanceof DocumentFragment)) { return true; } // broken <template> cloning (Edge up to at least version 17) var t2 = document.createElement('template'); t2.content.appendChild(document.createElement('div')); t.content.appendChild(t2); var clone = t.cloneNode(true); return (clone.content.childNodes.length === 0 || clone.content.firstChild.content.childNodes.length === 0); })(); // NOTE: any browser that does not have template or ES6 features // must load the full suite of polyfills. if (!window.Promise || !Array.from || !window.URL || !window.Symbol || needsTemplate) { polyfills = ['sd-ce-pf']; } if (polyfills.length) { var url; var polyfillFile = 'bundles/webcomponents-' + polyfills.join('-') + '.js'; // Load it from the right place. if (window.WebComponents.root) { url = window.WebComponents.root + polyfillFile; } else { var script = document.querySelector('script[src*="' + name +'"]'); // Load it from the right place. url = script.src.replace(name, polyfillFile); } var newScript = document.createElement('script'); newScript.src = url; // if readyState is 'loading', this script is synchronous if (document.readyState === 'loading') { // make sure custom elements are batched whenever parser gets to the injected script newScript.setAttribute('onload', 'window.WebComponents._batchCustomElements()'); document.write(newScript.outerHTML); document.addEventListener('DOMContentLoaded', ready); } else { newScript.addEventListener('load', function () { asyncReady(); }); newScript.addEventListener('error', function () { throw new Error('Could not load polyfill bundle' + url); }); document.head.appendChild(newScript); } } else { // if readyState is 'complete', script is loaded imperatively on a spec-compliant browser, so just fire WCR if (document.readyState === 'complete') { polyfillsLoaded = true; fireEvent(); } else { // this script may come between DCL and load, so listen for both, and cancel load listener if DCL fires window.addEventListener('load', ready); window.addEventListener('DOMContentLoaded', function() { window.removeEventListener('load', ready); ready(); }) } } })(); </script><script id="webComponents.js">WebComponents.waitFor( () => { /** * This file is not transpiled! Be careful what JS Features u use. * To check you can use https://caniuse.com */ class AddToCartButton extends HTMLElement { constructor() { super(); const self = this; self.content = self.innerHTML; self.addEventListener('click', self.onClickHandler.bind(self)); } connectedCallback() { const self = this; self.isTextLink = self.isTextLink || !!self.getAttribute('isTextLink'); self.isDisabled = self.getAttribute('isDisabled') == 'true'; self.targetPage = self.targetPage || self.getAttribute('targetPage'); self.config = self.config || JSON.parse(self.getAttribute('config') || '[]'); self.innerHTML = ''; self.appendChild(self.createChildElement()); } createChildElement() { const self = this; const element = document.createElement(self.isTextLink ? 'a' : 'button'); if (self.isTextLink) { element.href = ''; } if (self.hasAttribute('classList')) { element.className = self.getAttribute('classList'); } else { element.className = 'btn'; if (self.isTextLink) element.className += ' btn-text-link'; } element.innerHTML = self.content; return element; } onClickHandler(evt) { const self = this; evt.preventDefault(); evt.stopPropagation(); const xhr = new XMLHttpRequest(); xhr.open('POST', self.getApiUrl(), true); xhr.onloadend = () => { if (self.isDisabled) { return false; } if (xhr.status == 200) { const evt = new CustomEvent('cart-update-success'); // redirect if targetPage is defined if (self.targetPage) { document.location.href = self.targetPage; } else { evt.data = JSON.parse(xhr.responseText); self.dispatchEvent(evt); } } else if (xhr.status == 205) { self.dispatchEvent(new CustomEvent('cart-reset')); } else { self.dispatchEvent(new CustomEvent('cart-update-error')); location.href += ''; // On errors we want to reload the current page } } xhr.setRequestHeader('Content-Type', 'application/json'); xhr.send(JSON.stringify(self.config)); return false; } getApiUrl() { const self = this; const isUpsell = self.config.filter(item => item.name != null && item.name.includes('after-order-process')).length > 0; const addEndpoint = isUpsell ? '/add-upsell' : '/add'; const defaultApiUrl = '/frontend/cart-facade'.concat(addEndpoint); return self.apiUrl || self.getAttribute('apiUrl') || defaultApiUrl; } } customElements.define('add-to-cart-button', AddToCartButton); }); </script><script id="svgInjector.js">(() => { "use strict"; const loadSVGIcons = () => { const checkIcons = setInterval(() => { const iconsElement = document.querySelector('#icons_svg'); if (iconsElement) { clearInterval(checkIcons); const noCacheArg = window.btoa(new Date()); let iconResource = iconsElement.getAttribute('src'); if(iconsElement.getAttribute('src').indexOf('?') === -1) { iconResource = `${iconsElement.getAttribute('src')}?nc=${noCacheArg}`; }else { iconResource = `${iconsElement.getAttribute('src')}&nc=${noCacheArg}`; } iconsElement.remove(); const xhr = new XMLHttpRequest(); xhr.open("get", iconResource, true); xhr.timeout = 6000; xhr.onload = () => { if (xhr.status >= 200 && xhr.status < 300) { const svg = xhr.responseXML.documentElement; svg.style.display = 'none'; document.body.insertBefore(svg, document.body.firstChild); } else { console.error('SVG load request failed with status:', xhr.status); } }; xhr.onerror = () => { console.error('SVG load request encountered an error.'); }; xhr.ontimeout = () => { console.error('SVG load request timed out.'); }; xhr.send(); } }, 100); }; loadSVGIcons(); })(); </script><meta name="twitter:card" content="summary" /><meta name="twitter:title" content="details-daten-flat" /><meta name="twitter:url" content="https://mobile.1und1.de/details-daten-flat" /><meta property="og:type" content="website" /><meta property="og:title" content="details-daten-flat" /><meta property="og:site_name" content="Home" /><meta property="og:url" content="https://mobile.1und1.de/details-daten-flat" /> <link rel="apple-touch-icon" href="/_Resources/Static/Packages/ONEANDONE.RNodeTypes/1739887937/images/favicon-delivery/apple-touch-icon.png?bust=3"/> <link rel="apple-touch-icon" sizes="57x57" href="/_Resources/Static/Packages/ONEANDONE.RNodeTypes/1739887937/images/favicon-delivery/apple-touch-icon-57x57.png?bust=3"/> <link rel="apple-touch-icon" sizes="60x60" href="/_Resources/Static/Packages/ONEANDONE.RNodeTypes/1739887937/images/favicon-delivery/apple-touch-icon-60x60.png?bust=3"/> <link rel="apple-touch-icon" sizes="72x72" href="/_Resources/Static/Packages/ONEANDONE.RNodeTypes/1739887937/images/favicon-delivery/apple-touch-icon-72x72.png?bust=3"/> <link rel="apple-touch-icon" sizes="76x76" href="/_Resources/Static/Packages/ONEANDONE.RNodeTypes/1739887937/images/favicon-delivery/apple-touch-icon-76x76.png?bust=3"/> <link rel="apple-touch-icon" sizes="114x114" href="/_Resources/Static/Packages/ONEANDONE.RNodeTypes/1739887937/images/favicon-delivery/apple-touch-icon-114x114.png?bust=3"/> <link rel="apple-touch-icon" sizes="120x120" href="/_Resources/Static/Packages/ONEANDONE.RNodeTypes/1739887937/images/favicon-delivery/apple-touch-icon-120x120.png?bust=3"/> <link rel="apple-touch-icon" sizes="144x144" href="/_Resources/Static/Packages/ONEANDONE.RNodeTypes/1739887937/images/favicon-delivery/apple-touch-icon-144x144.png?bust=3"/> <link rel="apple-touch-icon" sizes="152x152" href="/_Resources/Static/Packages/ONEANDONE.RNodeTypes/1739887937/images/favicon-delivery/apple-touch-icon-152x152.png?bust=3"/> <link rel="apple-touch-icon" sizes="180x180" href="/_Resources/Static/Packages/ONEANDONE.RNodeTypes/1739887937/images/favicon-delivery/apple-touch-icon-180x180.png?bust=3"/> <link rel="apple-touch-icon" href="/_Resources/Static/Packages/ONEANDONE.RNodeTypes/1739887937/images/favicon-delivery/apple-touch-icon-precomposed.png?bust=3"/> <link rel="apple-touch-icon" sizes="57x57" href="/_Resources/Static/Packages/ONEANDONE.RNodeTypes/1739887937/images/favicon-delivery/apple-touch-icon-57x57-precomposed.png?bust=3"/> <link rel="apple-touch-icon" sizes="60x60" href="/_Resources/Static/Packages/ONEANDONE.RNodeTypes/1739887937/images/favicon-delivery/apple-touch-icon-60x60-precomposed.png?bust=3"/> <link rel="apple-touch-icon" sizes="72x72" href="/_Resources/Static/Packages/ONEANDONE.RNodeTypes/1739887937/images/favicon-delivery/apple-touch-icon-72x72-precomposed.png?bust=3"/> <link rel="apple-touch-icon" sizes="76x76" href="/_Resources/Static/Packages/ONEANDONE.RNodeTypes/1739887937/images/favicon-delivery/apple-touch-icon-76x76-precomposed.png?bust=3"/> <link rel="apple-touch-icon" sizes="114x114" href="/_Resources/Static/Packages/ONEANDONE.RNodeTypes/1739887937/images/favicon-delivery/apple-touch-icon-114x114-precomposed.png?bust=3"/> <link rel="apple-touch-icon" sizes="120x120" href="/_Resources/Static/Packages/ONEANDONE.RNodeTypes/1739887937/images/favicon-delivery/apple-touch-icon-120x120-precomposed.png?bust=3"/> <link rel="apple-touch-icon" sizes="144x144" href="/_Resources/Static/Packages/ONEANDONE.RNodeTypes/1739887937/images/favicon-delivery/apple-touch-icon-144x144-precomposed.png?bust=3"/> <link rel="apple-touch-icon" sizes="152x152" href="/_Resources/Static/Packages/ONEANDONE.RNodeTypes/1739887937/images/favicon-delivery/apple-touch-icon-152x152-precomposed.png?bust=3"/> <link rel="apple-touch-icon" sizes="180x180" href="/_Resources/Static/Packages/ONEANDONE.RNodeTypes/1739887937/images/favicon-delivery/apple-touch-icon-180x180-precomposed.png?bust=3"/> <link rel="icon" type="image/png" sizes="192x192" href="/_Resources/Static/Packages/ONEANDONE.RNodeTypes/1739887937/images/favicon-delivery/android-icon-192x192.png?bust=3"/> <link rel="icon" type="image/png" sizes="32x32" href="/_Resources/Static/Packages/ONEANDONE.RNodeTypes/1739887937/images/favicon-delivery/favicon-32x32.png?bust=3"/> <link rel="icon" type="image/png" sizes="96x96" href="/_Resources/Static/Packages/ONEANDONE.RNodeTypes/1739887937/images/favicon-delivery/favicon-96x96.png?bust=3"/> <link rel="icon" type="image/png" sizes="16x16" href="/_Resources/Static/Packages/ONEANDONE.RNodeTypes/1739887937/images/favicon-delivery/favicon-16x16.png?bust=3"/> <link rel="manifest" href="/_Resources/Static/Packages/ONEANDONE.RNodeTypes/1739887937/images/favicon-delivery/manifest.json?bust=3"/> <meta name="msapplication-TileColor" content="#ffffff"/> <meta name="msapplication-TileImage" content="/_Resources/Static/Packages/ONEANDONE.RNodeTypes/1739887937/images/favicon-delivery/ms-icon-150x150.png?bust=3"/> <meta name="theme-color" content="#ffffff"/> <link href="/_Resources/Static/Packages/ONEANDONE.NNodeTypes/1739887937/Styles/fonts.css?bust=3" rel="stylesheet" media="all" /> <link href="/_Resources/Persistent/7999f72869f2a989de1fdf942e44e659f80e3d6c/main.css?bust=3" rel="stylesheet" media="all" /> <script>var neos = neos || [];neos.pageAttribute = neos.pageAttribute || [];neos.pageAttribute.productarea = "private";neos.pageAttribute.pageType = "mobile";neos.pageAttribute.tracking_bereich = "Datenflat";neos.pageAttribute.tracking_sektion = "Section undetermined";neos.pageAttribute.uriPathSegment = "details-daten-flat";neos.pageAttribute.loadOptimizely = "";neos.pageAttribute.noTealium = "";neos.pageAttribute.overrideTrackingPageName = "";neos.pageAttribute.isBk = "";neos.pageAttribute.trackingGroup = "detail-seiten";neos.pageAttribute.isDsp = "";</script><script>(window.__oneandoneAccess=window.__oneandoneAccess||{}).keyString="";</script><script>(window.__oneandoneAccess=window.__oneandoneAccess||{}).keyInteger="";</script><script>(window.__oneandoneAccess=window.__oneandoneAccess||{}).tech_codeversion="1739973300";</script><script>(window.__oneandoneAccess=window.__oneandoneAccess||{}).mcat_data="";</script><script>(window.__oneandoneAccess=window.__oneandoneAccess||{}).campaign_firsttouchactioncode="";</script><script>(window.__oneandoneAccess=window.__oneandoneAccess||{}).campaign_lasttouchactioncode="";</script><script>(window.__oneandoneAccess=window.__oneandoneAccess||{}).campaign_firsttouchmediumcode="094DF11";</script><script>(window.__oneandoneAccess=window.__oneandoneAccess||{}).campaign_lasttouchmediumcode="094DF11";</script><script>(window.__oneandoneAccess=window.__oneandoneAccess||{}).campaign_ft_actioncode="";</script><script>(window.__oneandoneAccess=window.__oneandoneAccess||{}).campaign_ft_mediumcode="094DF11";</script><script>(window.__oneandoneAccess=window.__oneandoneAccess||{}).campaign_lt_actioncode="";</script><script>(window.__oneandoneAccess=window.__oneandoneAccess||{}).campaign_lt_mediumcode="094DF11";</script><script>(window.__oneandoneAccess=window.__oneandoneAccess||{}).campaign_winning_actioncode="";</script><script>(window.__oneandoneAccess=window.__oneandoneAccess||{}).campaign_winning_mediumcode="094DF11";</script><script>(window.__oneandoneAccess=window.__oneandoneAccess||{}).varianttest_name="";</script><script>(window.__oneandoneAccess=window.__oneandoneAccess||{}).varianttest_variableid="";</script><script>(window.__oneandoneAccess=window.__oneandoneAccess||{}).varianttest_variant="";</script><script>(window.__oneandoneAccess=window.__oneandoneAccess||{}).product_name="";</script><script>(window.__oneandoneAccess=window.__oneandoneAccess||{}).hw_mix_old="";</script><script>(window.__oneandoneAccess=window.__oneandoneAccess||{}).request_servertime="2025-02-20T10:26:43.625";</script><script>(window.__oneandoneAccess=window.__oneandoneAccess||{}).global_environment="live";</script><script id="data-layer.js">function IsJsonString(str) { try { JSON.parse(str); } catch (e) { return false; } return true; } window._1und1datalayer = window._1und1datalayer || []; window.__oneandoneAccess = window.__oneandoneAccess || []; var pageName = document.location.pathname != '/' ? document.location.pathname : (neos.pageAttribute.uriPathSegment || ''); if (neos.pageAttribute.overrideTrackingPageName){ pageName = neos.pageAttribute.overrideTrackingPageName } else if (pageName.length > 0 && pageName[0] === '/'){ pageName = pageName.substr(1) } window._1und1datalayer.push({ 'event': 'page.info', 'page': { 'name': pageName, 'mainarea' : neos.pageAttribute.isDsp ? 'ShopDeposit' : '', 'template': neos.pageAttribute.trackingGroup || neos.pageAttribute.uriPathSegment || '', 'area': neos.pageAttribute.tracking_bereich, 'shopname': (neos.pageAttribute.pageType === 'accessory' ? 'accessory-de' : (neos.pageAttribute.isBk && neos.pageAttribute.pageType === 'dsl') ? 'dslupgrade-de' : (!neos.pageAttribute.isBk && neos.pageAttribute.pageType === 'dsl') ? 'dslorder-de' : ((neos.pageAttribute.isBk && neos.pageAttribute.pageType === 'mobile') ? 'mobile-contractshop-de' : (!neos.pageAttribute.isBk && neos.pageAttribute.pageType === 'mobile') ? 'mobileorder-de' : (neos.pageAttribute.pageType === 'eue' ? 'eue-home' : ''))), 'shoptype': neos.pageAttribute.isBk ? 'Existing contract shop (BK)' : 'New contract shop' } }); window._1und1datalayer.push({ 'event': 'tech.info', 'tech': { 'environment': window.__oneandoneAccess.global_environment || '', 'servertimestamp': window.__oneandoneAccess.request_servertime || '', 'codeversion': window.__oneandoneAccess.tech_codeversion || '', 'platform': 'content-delivery-platform', 'optimizely': neos.pageAttribute.loadOptimizely ? true : false } }); window._1und1datalayer.push({ 'event': 'campaign.info', 'campaign': { 'firsttouchactioncode': window.__oneandoneAccess.campaign_firsttouchactioncode || 'No AC', 'lasttouchactioncode': window.__oneandoneAccess.campaign_lasttouchactioncode || 'No AC', 'firsttouchmediumcode': window.__oneandoneAccess.campaign_firsttouchmediumcode || 'No MC', 'lasttouchmediumcode': window.__oneandoneAccess.campaign_lasttouchmediumcode || 'No MC', 'mcat': (typeof window.__oneandoneAccess == 'undefined' || !IsJsonString(window.__oneandoneAccess.mcat_data)) ? '' : JSON.parse(window.__oneandoneAccess.mcat_data) || '', 'ft_actioncode': window.__oneandoneAccess.campaign_ft_actioncode || 'No AC', 'ft_mediumcode': window.__oneandoneAccess.campaign_ft_mediumcode || 'No MC', 'lt_actioncode': window.__oneandoneAccess.campaign_lt_actioncode || 'No AC', 'lt_mediumcode': window.__oneandoneAccess.campaign_lt_mediumcode || 'No MC', 'winning_actioncode': window.__oneandoneAccess.campaign_winning_actioncode || 'No AC', 'winning_mediumcode': window.__oneandoneAccess.campaign_winning_mediumcode || 'No MC' } }); window._1und1datalayer.push({ 'event': 'varianttest.info', 'varianttest': { 'name': unescape(window.__oneandoneAccess.varianttest_name || ''), 'variant': unescape(window.__oneandoneAccess.varianttest_variant || ''), 'variableid': unescape(window.__oneandoneAccess.varianttest_variableid || '') } }); window._1und1datalayer.push({ 'event': 'user.info', 'user': { 'loginstatus': false, 'loginlevel': 'none', 'customerid': '', 'city': '', 'type':'INTERESSENT' } }); function videoComponentTracking() { let video = document.querySelector('.lazy-video'); if (video) { const previewImage = document.querySelector('.lazy-video.lazy-video--preview'); let videoId = video.dataset.videoid; const getVideoInfoFromItem = (attribute) => { const videoList = document.querySelectorAll('ul.unordered-list--video li'); const results = []; videoList.forEach((videoItem) => { const videoChild = videoItem.querySelector(`[data-video-id="${video.dataset.videoid}"]`); if (videoChild) { if (attribute === 'title') { results.push(videoChild.dataset.videoTitle || 'No Title'); } if (attribute === 'duration') { results.push(videoChild.dataset.videoDuration || 'No Duration'); } } }); return results.length > 0 ? results : ['No Information']; }; let videoTitle = getVideoInfoFromItem('title'); let videoDuration = getVideoInfoFromItem('duration'); let videoSource = `YouTube_${videoId}`; previewImage.addEventListener('click', () => { video = document.querySelector('.lazy-video'); videoId = video.dataset.videoid; videoSource = `YouTube_${videoId}`; videoTitle = getVideoInfoFromItem('title'); videoDuration = getVideoInfoFromItem('duration'); }); const pushToDataLayer = (currentState, videoTitle, videoDuration, videoSource, control) => { window._1und1datalayer.push({ event: 'media.info', media: { type: 'Video', source: videoSource, name: videoTitle || 'No Information', length: videoDuration || 'No Information', state: { starttype: 'usertriggered', currentstate: currentState }, interaction: { control: control } } }); }; const updateEventTracking = () => { window._1und1datalayer.push({ event: 'genericevent.send', timestamp: window.__oneandoneAccess?.request_servertime || Date.now() }); }; const eventcontextDelete = () => { window._1und1datalayer.push({ event: 'eventcontext.delete' }); }; const trackVideoEvents = () => { let wait = window.setInterval(() => { if (window.YT) { clearInterval(wait); const iframeId = document.querySelector('.lazy-video iframe').id; let player = new YT.Player(iframeId, { events: { onStateChange: onPlayerStateChange } }); function onPlayerStateChange(event) { if (event.data === YT.PlayerState.PAUSED) { eventcontextDelete(); pushToDataLayer(['paused'], videoTitle, videoDuration, videoSource, 'pausedbutton'); updateEventTracking(); } else if (event.data === YT.PlayerState.PLAYING) { eventcontextDelete(); pushToDataLayer(['running'], videoTitle, videoDuration, videoSource, 'playbutton'); updateEventTracking(); } else if (event.data === YT.PlayerState.ENDED) { eventcontextDelete(); pushToDataLayer(['completed'], videoTitle, videoDuration, videoSource, ''); updateEventTracking(); } } } }, 200); }; pushToDataLayer(['not started'], videoTitle, videoDuration, videoSource, ''); updateEventTracking(); previewImage.addEventListener('click', trackVideoEvents); // We need to delete the first push, because it is to early from source tealium-append.js deleteEventFromDataLayer('pageview.send'); window._1und1datalayer.push({ event: 'pageview.send', timestamp: new Date() }); } } function deleteEventFromDataLayer(eventName) { const indexToRemove = window._1und1datalayer.findIndex(data => data.event === eventName); if (indexToRemove !== -1) { window._1und1datalayer.splice(indexToRemove, 1); } } addEventListener('DOMContentLoaded', videoComponentTracking); </script></head><body class="r-neospage inIframe cms-stop-countdown "><div id="oneandone-publishing-dynamicContent-toolbar"></div> <div class="breakpoint" data-base-path-static-rnodetypes="/_Resources/Static/Packages/ONEANDONE.RNodeTypes/1739887937/"></div> <svg id="icons_svg" class="d-none" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" src="/_Resources/Persistent/0223480d57399496b5019248aea514fe594e2fe7/icons.svg?bust=3" /> <main class="mt-0 mb-0 neos-contentcollection"> <div class="container"> <div class="row tariff-detail"> <div class="col"> <div class="tariff-detail__heading"> <h2>1&1 Daten-Flat L</h2> <h4>Alle Tarifdetails auf einen Blick</h4> </div> <div class="tariff-detail__table-wrapper"> <table class="tariff-detail__table tariff-detail__table--1"> <tbody class=""> <tr> <td colspan="2"> <h3> Allgemeines <svg viewBox="0 0 100 100" class="icon icon--medium icon--color-white"> <use xlink:href="#arrow--down"></use> </svg> </h3> </td> </tr> <tr> <td><strong>Flat Internet 5G</strong></td> <td> <div>40 GB, nach Verbrauch des monatlichen Datenvolumens mit max. 64 kBit/s</div> </td> </tr> <tr> <td><strong>Max. Surfgeschwindigkeit (bis zu)</strong></td> <td> <div>300 Mbit/s, 50 Mbit/s Upload</div> </td> </tr> <tr> <td><strong>Auslands-Flat</strong></td> <td> <div class="tariff-detail__table-icon"><svg viewBox="0 0 100 100" class="icon icon--medium"><use xlink:href="#check" /></svg></div><div>Surfen in der gesamten EU ohne Zusatzkosten</div> </td> </tr> <tr> <td><strong>Tablet- &amp; Laptopangebot</strong></td> <td> <div>Preis abhängig vom gewählten Tablet/Laptop</div> </td> </tr> <tr> <td><strong>Bereitstellungsgebühr</strong></td> <td> <div><span>0,– € für Tarife ohne Tablet oder Laptop.<br>&nbsp;</span><span>Einmalig 29,90 € für Tarife mit Tablet oder Laptop.</span></div> </td> </tr> <tr> <td><strong>Kündigungsfrist</strong></td> <td> <div><span><span><strong>Tarifvariante mit Laufzeit:</strong></span><br><span>&nbsp;Der Vertrag hat eine Mindestvertragslaufzeit von 24 Monaten und verlängert sich anschließend automatisch, wenn er nicht zum Ende der Mindestvertragslaufzeit oder anschließend mit einer Frist von 1 Monat gekündigt wird.</span><br><br><span>&nbsp;<strong>Tarifvariante ohne Laufzeit:</strong></span><br><span>&nbsp;Der Vertrag hat keine Mindestvertragslaufzeit und kann mit einer Frist von 14 Tagen gekündigt werden.&nbsp;</span></span></div> </td> </tr> </tbody> <tbody class=""> <tr> <td colspan="2"> <h3> Internet-Nutzung <svg viewBox="0 0 100 100" class="icon icon--medium icon--color-white"> <use xlink:href="#arrow--down"></use> </svg> </h3> </td> </tr> <tr> <td><strong>5G</strong></td> <td> <div class="tariff-detail__table-icon"><svg viewBox="0 0 100 100" class="icon icon--medium"><use xlink:href="#check" /></svg></div><div></div> </td> </tr> <tr> <td><strong>LTE</strong></td> <td> <div class="tariff-detail__table-icon"><svg viewBox="0 0 100 100" class="icon icon--medium"><use xlink:href="#check" /></svg></div><div></div> </td> </tr> </tbody> <tbody class=""> <tr> <td colspan="2"> <h3> Optionen &amp; Erweiterungen <svg viewBox="0 0 100 100" class="icon icon--medium icon--color-white"> <use xlink:href="#arrow--down"></use> </svg> </h3> </td> </tr> <tr> <td><strong>Multi-Card bei Tarifen mit Tablet oder Laptop</strong><br>Mit einem zusätzlichen Gerät surfen und unter gleicher Rufnummer telefonieren</td> <td> <div><span><span>1x Multi-Card gratis inklusive und eine weitere Multi-Card optional buchbar für 3,99 € / Monat. Es sind maximal 2 Multi-Cards pro Vertrag möglich.</span><br><span>&nbsp;</span><br><span>Aktivierung einmalig 9,90 €</span></span></div> </td> </tr> <tr> <td><strong>Multi-Card bei Tarifen ohne Tablet oder Laptop</strong><br>Mit einem zusätzlichen Gerät surfen und unter gleicher Rufnummer telefonieren</td> <td> <div><span><span>Bis zu 2 Multi-Cards für je 3,99 € / Monat&nbsp;</span><br><br><span>Aktivierung einmalig 9,90 €</span></span></div> </td> </tr> </tbody> </table> </div> </div> </div> <div class="row tariff-detail__priceinfo"> <div class="col-md-8 col-lg-9 tariff-detail__priceinfo__text"> <span><span>Alle Preise inkl. MwSt.</span><br><span>Mit einem Haken versehene Leistungen sind im Tarif inklusive, wenn nicht anders angegeben.</span></span> </div> </div> <div class="row tariff-detail__downloadlist"> <div class="col"> <h4>Alle Tarifdetails Tarife zum Download:</h4> <ul> <li> <a target="_blank" class="link--dynamic link__pre-icon--medium" href="https://content.1und1.de/pdfs/Preisliste_1und1_Daten_Flat_1u1_0624.pdf"> <svg viewBox="0 0 100 100" class="icon icon--medium"> <use xlink:href="#pdf"></use> </svg> <span class="link__text"><span>1&1 Daten-Flat S, M, L und XL</span></span> </a> </li> <li> <a target="_blank" class="link--dynamic link__pre-icon--medium" href="https://var.uicdn.net/pdfs/Weitere_Preisinformationen_1und1_Mobilfunk_Datentarife.pdf"> <svg viewBox="0 0 100 100" class="icon icon--medium"> <use xlink:href="#pdf"></use> </svg> <span class="link__text"><span>Weitere Leistungen, wie z.B. Roaming</span></span> </a> </li> </ul> </div> </div> </div> <div class="container"> <section class="accordion"><div class="row g-0"><div class="col-sm-12 accordion__list" id="accordion42907"></div><div class="col-sm-12 accordion__list"><div class="accordion__item"><p id="headinge56036" class="accordion__title" onclick=" if(false) {changeHeadlineAccordione56036()}"><button class="accordion__button" data-bs-toggle="collapse" data-bs-target="#collapsee56036" aria-expanded="true" aria-controls="collapsee56036"><span class="accordion__question "><span><span>Produkthinweise</span></span></span><svg viewbox="0 0 100 100" class="icon accordion__icon icon--medium"><use xlink:href="#arrow--up"></use></svg></button></p><div id="collapsee56036" class="collapse show" data-bs-parent="#accordion42907"><div class="accordion__answer" aria-labelledby="headinge56036"><p><p><strong>Premium-Tablets oder -Laptops</strong> ab einmalig 0,– € in Verbindung mit einer 1&amp;1 Daten-Flat mit 24 Monaten Vertragslaufzeit. Änderungen und Irrtümer vorbehalten. Preise inkl. MwSt.</p><p><strong>Alt gegen Neu Prämie</strong> ist abhängig vom eingesendeten Gerät (Modell &amp; Marke). Auszahlung nach Einsendung Ihres alten Geräts. Es gelten die Alt gegen Neu (Trade-In) Bedingungen. Der Service umfasst nicht Geräte, die als kostenlose Beigabe oder als Zweitgerät im Rahmen einer Aktion zusätzlich ausgegeben wurden.</p><p><strong>24 h Austausch-Service</strong> gilt für Smartphones in Verbindung mit der 1&amp;1 Daten-Flat und nur mit gleichzeitiger Vertragsverlängerung (24 Monate) sowie Rückgabe des defekten Gerätes. Gilt nicht bei mutwilligen Schäden. Austausch in selbstverschuldeten Fällen nur einmal innerhalb eines Monats. Der Service umfasst nicht Geräte, die als kostenlose Beigabe oder als Zweitgerät im Rahmen einer Aktion zusätzlich ausgegeben wurden. Es gelten die weiteren Servicebedingungen.</p><p><strong>Sofort-Start:</strong> , wie z.B. 1&amp;1 All-Net-Flat, Mobiltelefon und 1&amp;1 Daten-Flat etc., und Auswahl des 1&amp;1 Overnight-Service können Sie bereits morgen durchstarten: Wenn Sie montags bis freitags bis 20:00 Uhr (samstags bis 12:00 Uhr) bestellen (Eingang im elektronischen Bestellsystem der 1&amp;1), erhalten Sie Ihre verfügbare Lieferung bereits am nächsten Werktag (erster Zustellversuch innerhalb Deutschlands; ausgeschlossen Inseln und ungültige Zieladressen). Bestellungen, die an Feiertagen oder an Tagen vor Feiertagen nach 20 Uhr bei 1&amp;1 eingehen: Lieferung ca. am übernächsten Werktag. Weitere Details sind unserer <a target="_blank" rel="noopener external" href="https://var.uicdn.net/pdfs/1und1_Leistungsbeschreibung_Mobilfunk.pdf"><u>Leistungsbeschreibung </u></a>zu entnehmen.</p><p><strong>30 Tage testen:</strong> Sonderkündigung im ersten Monat möglich. 1&amp;1 erstattet Ihnen umgehend einen eventuell gezahlten Gerätepreis und berechnet Ihnen lediglich speziell angefallene Verbrauchskosten (z. B. Auslandstelefonate) sowie tagesgenau die anteilige Grundgebühr. Ihr Paket kann in jeder DHL-Filiale und jedem Hermes-Paketshop abgegeben werden. Alternativ kann das Paket auch bequem an einem Tag Ihrer Wahl an Ihrer Wunschadresse abgeholt werden. Die Abholung erfolgt Mo. – Sa. zwischen 8 Uhr und 20 Uhr und kann unter folgender Rufnummer beauftragt werden: 0721 / 9600.</p></p></div><div class="neos-contentcollection"></div></div></div></div></div></section> </div> </main> <div class="modal-lite" id="iframeLightbox" tabindex="-1" role="dialog" aria-labelledby=""> <div class="modal-lite__content modal-lite-xxl" role="document"> <div class="modal-lite__content-header"> <span aria-hidden="true" class="modal-lite__close" data-dismiss="modal-lite" aria-label="Close"> <svg viewBox="0 0 100 100" class="icon icon--large"><use xlink:href="#cross"></use></svg> </span> </div> <div class="modal-lite__content-body"></div> </div> </div> <script>(window.__oneandoneAccess=window.__oneandoneAccess||{}).baseApiUrl="https:\/\/api.1und1.de";</script> <script>(window.__oneandoneAccess=window.__oneandoneAccess||{}).servertimeUTC="2025-02-20T10:26:43.625";</script> <script>(window.__oneandoneAccess=window.__oneandoneAccess||{}).PHONE_SMALL_SCREEN_business="0721 \/ 960 9171";</script> <script>(window.__oneandoneAccess=window.__oneandoneAccess||{}).PHONE_TABLET_business="0721 \/ 960 9165";</script> <script>(window.__oneandoneAccess=window.__oneandoneAccess||{}).PHONE_TABLET_private="0721 \/ 960 9165";</script> <script>(window.__oneandoneAccess=window.__oneandoneAccess||{}).PHONE_MOBILE_business="";</script> <script>(window.__oneandoneAccess=window.__oneandoneAccess||{}).PHONE_BIG_SCREEN_business="0721 \/ 960 9170";</script> <script>(window.__oneandoneAccess=window.__oneandoneAccess||{}).PHONE_BIG_SCREEN_private="0721 \/ 960 9165";</script> <script>(window.__oneandoneAccess=window.__oneandoneAccess||{}).PHONE_DSL_business="0721 \/ 960 9172";</script> <script>(window.__oneandoneAccess=window.__oneandoneAccess||{}).PHONE_DSL_private="0721 \/ 960 9153";</script> <script>(window.__oneandoneAccess=window.__oneandoneAccess||{}).PHONE_SUPPORT="0721 \/ 9600";</script> <script>(window.__oneandoneAccess=window.__oneandoneAccess||{}).PHONE_SUPPORT_DSL="0721 \/ 9600";</script> <script>(window.__oneandoneAccess=window.__oneandoneAccess||{}).PHONE_SUPPORT_DSL_BUSINESS="0721 \/ 9609123";</script> <script>(window.__oneandoneAccess=window.__oneandoneAccess||{}).PHONE_EUE="0721 \/ 9605727";</script> <script>(window.__oneandoneAccess=window.__oneandoneAccess||{}).PHONE_SUPPORT_MOBILE="0721 \/ 9600";</script> <script>(window.__oneandoneAccess=window.__oneandoneAccess||{}).PHONE_SUPPORT_MOBILE_BUSINESS="0721 \/ 9609123";</script> <script>(window.__oneandoneAccess=window.__oneandoneAccess||{}).PHONE_GLASFASER_business="0800 \/ 102363041";</script> <script>(window.__oneandoneAccess=window.__oneandoneAccess||{}).PHONE_GLASFASER_private="0800 \/ 102363041";</script> <script>(window.__oneandoneAccess=window.__oneandoneAccess||{}).PHONE_SMALL_SCREEN_private="0721 \/ 960 6000";</script> <script>(window.__oneandoneAccess=window.__oneandoneAccess||{}).PHONE_MOBILE_private="";</script> <script>(window.__oneandoneAccess=window.__oneandoneAccess||{}).PHONE_KWK="0721 \/ 9604565";</script> <script>(window.__oneandoneAccess=window.__oneandoneAccess||{}).PROFI_SELLER_ID="";</script> <script>(window.__oneandoneAccess=window.__oneandoneAccess||{}).PHONE_SUPPORT_MOBILE_BK="0721 \/ 960 9600";</script> <script>(window.__oneandoneAccess=window.__oneandoneAccess||{}).PHONE_SUPPORT_DSL_BK="0721 \/ 960 9600";</script> <script>(window.__oneandoneAccess=window.__oneandoneAccess||{}).PHONE_MOBILE_DSP="0721 \/ 960 9730";</script> <script src="/_Resources/Persistent/aedea8e55d8c51b47ac8ce9e06ff8e4f6a619f15/main.js?bust=3"></script> <script src="/_Resources/Static/Packages/ONEANDONE.NNodeTypes/1739887937/JavaScript/bs-transformer.js?bust=3"></script> <script src="/_Resources/Static/Packages/ONEANDONE.NNodeTypes/1739887937/JavaScript/shop-general.js?bust=3"></script> <script type="application/ld+json"> { "@context": "http://schema.org", "@type": "WebSite", "url": "https://www.1und1.de/", "name": "1&amp;1", "potentialAction": { "@type": "SearchAction", "target":"https://www.1und1.de/suche?query={search_term_string}", "query-input": "required name=search_term_string" } } </script> <script type="application/ld+json"> { "@context": "http://schema.org", "@type": "Organization", "name": "1&amp;1 Telecommunication SE", "brand": "1&amp;1", "parentOrganization": "United Internet AG", "url": "https://www.1und1.de/", "logo": "https://www.united-internet.de/fileadmin/brands/downloads/logo-1und1.jpg", "address": { "@type": "PostalAddress", "streetAddress": "Elgendorfer Str. 57", "addressLocality": "Montabaur", "addressRegion": "Rheinland-Pfalz", "postalCode": "56410", "addressCountry": "DE" }, "contactPoint": [ { "@type": "ContactPoint", "telephone": "+49-721-9600", "contactType": "customer support", "areaServed": [ "DE" ] }, { "@type": "ContactPoint", "telephone": "+49-721-9605727", "contactType": "sales", "areaServed": [ "DE" ] } ], "sameAs": [ "https://de-de.facebook.com/1und1/", "https://twitter.com/1und1", "https://plus.google.com/+1und1", "https://www.xing.com/companies/1&amp;1", "https://de.linkedin.com/company/1&amp;amp;1-internet-ag", "https://www.pinterest.de/1und1de/", "https://www.youtube.com/1und1" ] } </script> <script src="/_Resources/Static/Packages/ONEANDONE.ReactNodeTypes/1739887937/JavaScript/main.js?bust=3"></script><script id="tealium-append.js">window.utag_cfg_ovrd = { noview : true }; window._1und1datalayer.push({ 'event': 'pageview.send', 'timestamp': new Date() }); (function(a,b,c,d){ if (window.location.hostname.split('.').slice(-2).join('.') == '1und1.cloud') { a='//tags.tiqcdn.com/utag/1und1/onlineshop/qa/utag.js'; } else { a='//tags.tiqcdn.com/utag/1und1/onlineshop/prod/utag.js'; } b=document;c='script';d=b.createElement(c);d.src=a;d.type='text/java'+c;d.async=true; a=b.getElementsByTagName(c)[0];a.parentNode.insertBefore(d,a); })(); </script><script> const contactType = ['phone', 'chat', 'support']; const contactState = ['open', 'closed']; (function contactEventTracking() { for (let type of contactType) { for (let state of contactState) { let eventNamespace = `contact-palette-${type}_${state}`; document.addEventListener(eventNamespace, function() { window._1und1datalayer.push({ 'event': 'genericevent.send', 'genericevent': { 'category': 'genericevent.send', 'name': eventNamespace, 'action': 'view', 'type': 'custom' } }) }, false); } } }()); </script><script> (function() { document.addEventListener('nk1und1nav:showKwKLink', function(event) { let nk1und1NavigationMetaItem = document.getElementsByClassName('nk1und1-kwk-navigation-meta__link'); nk1und1NavigationMetaItem.forEach(element => {element.classList.remove('d-none')}); }); })(); </script><script id="RecurringModal.js" data-modal-headline="Willkommen zurück bei 1&amp;1!" data-modal-sublineCart="Sie haben sich vor kurzem in unserem Shop umgesehen. Möchten Sie Ihre Bestellung abschließen?" data-modal-sublineNoCart="Sie haben sich vor kurzem in unserem Shop umgesehen." data-modal-sectionHeadline="Derzeit besonders beliebt bei uns:" data-modal-offerButton="Zum Angebot" data-modal-cartButton="Zum Warenkorb" data-modal-productButton="Zum Produkt" src="/_Resources/Static/Packages/ONEANDONE.JNodeTypes/1739887937/JavaScript/RecurringModal/RecurringModal.js?bust=3"></script></body></html>

Pages: 1 2 3 4 5 6 7 8 9 10