dilutee.com Open in urlscan Pro
23.227.38.32  Public Scan

URL: https://dilutee.com/products/high-neck-tank-top
Submission: On January 01 via manual from IN — Scanned from CA

Form analysis 4 forms found in the DOM

GET /search

<form action="/search" method="get" style="position: relative;">
  <input type="text" name="q" placeholder="Search Our Store..." autocomplete="off">
  <svg xmlns="http://www.w3.org/2000/svg" class="search" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" viewBox="0 0 512 512" enable-background="new 0 0 512 512">
    <g>
      <path
        d="M495,466.2L377.2,348.4c29.2-35.6,46.8-81.2,46.8-130.9C424,103.5,331.5,11,217.5,11C103.4,11,11,103.5,11,217.5   S103.4,424,217.5,424c49.7,0,95.2-17.5,130.8-46.7L466.1,495c8,8,20.9,8,28.9,0C503,487.1,503,474.1,495,466.2z M217.5,382.9   C126.2,382.9,52,308.7,52,217.5S126.2,52,217.5,52C308.7,52,383,126.3,383,217.5S308.7,382.9,217.5,382.9z">
      </path>
    </g>
  </svg>
  <ul class="search-results" style="position: absolute; left: 0px; top: 43px; display: none;"></ul>
</form>

GET /search

<form action="/search" method="get" style="position: relative;">
  <input type="text" name="q" placeholder="Search Our Store..." autocomplete="off">
  <button type="submit" class="btn">search</button>
  <ul class="search-results" style="position: absolute; left: 0px; top: 43px; display: none;"></ul>
</form>

POST /cart/add

<form method="post" action="/cart/add" id="AddToCartForm_id" accept-charset="UTF-8" class="shopify-product-form" enctype="multipart/form-data" novalidate="novalidate"><input type="hidden" name="form_type" value="product"><input type="hidden"
    name="utf8" value="โœ“">
  <div class="selector-wrapper"><label for="productSelect-option-0">Color</label><select class="single-option-selector" data-option="option1" id="productSelect-option-0">
      <option value="White">White</option>
      <option value="Black">Black</option>
    </select></div>
  <div class="selector-wrapper"><label for="productSelect-option-1">Size</label><select class="single-option-selector" data-option="option2" id="productSelect-option-1">
      <option value="S">S</option>
      <option value="M">M</option>
      <option value="L">L</option>
      <option value="XL">XL</option>
      <option value="XXL">XXL</option>
    </select></div><select name="id" id="productSelect" class="product-single__variants" style="display: none;" tdf-old-val="42264675713255">
    <option selected="selected" data-sku="14:771#White;5:100014064" value="42264675713255">White / S - $ 9.99 USD</option>
    <option data-sku="14:193#Black;5:100014064" value="42264675746023">Black / S - $ 9.99 USD</option>
    <option data-sku="14:771#White;5:361386" value="42264675778791">White / M - $ 9.99 USD</option>
    <option data-sku="14:193#Black;5:361386" value="42264675811559">Black / M - $ 9.99 USD</option>
    <option data-sku="14:771#White;5:361385" value="42264675844327">White / L - $ 9.99 USD</option>
    <option data-sku="14:193#Black;5:361385" value="42264675877095">Black / L - $ 9.99 USD</option>
    <option data-sku="14:771#White;5:100014065" value="42264675909863">White / XL - $ 9.99 USD</option>
    <option data-sku="14:193#Black;5:100014065" value="42264675942631">Black / XL - $ 9.99 USD</option>
    <option data-sku="14:771#White;5:4182" value="42264675975399">White / XXL - $ 9.99 USD</option>
    <option data-sku="14:193#Black;5:4182" value="42264676008167">Black / XXL - $ 9.99 USD</option>
  </select>
  <h3 class="prod_qty"><span>Quantity</span>
    <ul class="QuantityBox">
      <li class="minus-box"> <a href="javascript:void(0)" class="minus produ_qty"> <em class="fa fa-minus"></em> </a> </li>
      <li class="input-box">
        <input type="text" id="Quantity" name="quantity" value="1" min="1" class="QuantityInput" pattern="[0-9]*" readonly="">
      </li>
      <li class="plus-box"> <a href="javascript:void(0)" class="plus produ_qty"> <em class="fa fa-plus"></em> </a> </li>
    </ul>
  </h3>
  <script type="text/javascript">
    function randomIntFromInterval(min, max) {
      return Math.floor(Math.random() * (max - min + 1) + min);
    }
    // Settings are here
    var total_items = 50;
    var d = new Date();
    var min_items_left = 12;
    var max_items_left = 20;
    var remaining_items = randomIntFromInterval(min_items_left, max_items_left);
    var min_of_remaining_items = 1;
    var decrease_after = 1.7;
    var decrease_after_first_item = 0.17;

    function progressbar(_this) {
      var $this = $(_this);
      var a = "<p>Hurry! Only <span class='count'>" + remaining_items + "</span> left in stock.</p>" + "<div class='progressbar'><div style='width:100%'></div></div>";
      $this.addClass('items-count');
      $this.html(a + $this.html());
      updateMeter($this);
      var b = $this;
      setTimeout(function() {
        remaining_items--;
        if (remaining_items < min_of_remaining_items) {
          remaining_items = randomIntFromInterval(min_items_left, max_items_left)
        }
        $('.count').css('background-color', '#CE0201');
        $('.count').css('color', '#fff');
        setTimeout(function() {
          $('.count').css('background-color', '#fff');
          $('.count').css('color', '#CE0201')
        }, 1000 * 60 * 0.03);
        b.find(".count").text(remaining_items);
        updateMeter(b);
      }, 1000 * 60 * decrease_after_first_item);
      setInterval(function() {
        remaining_items--;
        if (remaining_items < min_of_remaining_items) {
          remaining_items = randomIntFromInterval(min_items_left, max_items_left)
        }
        $('.count').css('background-color', '#CE0201');
        $('.count').css('color', '#fff');
        setTimeout(function() {
          $('.count').css('background-color', '#fff');
          $('.count').css('color', '#CE0201')
        }, 1000 * 60 * 0.03);
        b.find(".count").text(remaining_items);
        updateMeter(b)
      }, 1000 * 60 * decrease_after);
    }

    function updateMeter(a) {
      var b = 100 * remaining_items / total_items;
      if (remaining_items < 10) {
        a.find('.progressbar div:first').addClass('less-than-ten')
      }
      a.find('.progressbar').addClass('active progress-striped');
      setTimeout(function() {
        myanimate(a.find('.progressbar div:first'), b);
        a.find('.progressbar').removeClass('active progress-striped')
      }, 1000)
    }

    function myanimate(a, b) {
      var c = 0;
      var d = parseInt(a.closest('.progressbar').css('width'));
      var e = Math.floor(100 * parseInt(a.css('width')) / d);
      if (e > b) {
        c = e
      }

      function frame() {
        if (e > b) {
          c--
        } else {
          c++
        }
        a.css('width', c + '%');
        if (c == b || c <= 0 || c >= 100) clearInterval(f)
      }
      var f = setInterval(frame, 40)
    }
    get_random = function(list) {
      return list[Math.floor((Math.random() * list.length))];
    }
    $(document).ready(function() {
      progressbar('#progress_bar');
      var tag = "ctdn-12-12".match(/\d+/g);
      var hour = 23;
      var theDaysBox = $("#numdays");
      var theHoursBox = $("#numhours");
      var theMinsBox = $("#nummins");
      var theSecsBox = $("#numsecs");
      var d = new Date();
      var n = d.getDay();
      var date = 1;
      var nsec = 0;
      var nmin = 0;
      var nhrs = 0;
      var kp_seconds = d.getSeconds() + (d.getMinutes() * 60) + (d.getHours() * 60 * 60);
      var totalSeconds = 1500;
      if (getCookie('custom_count_down') == "") {
        setCookie('custom_count_down', '0', 1);
        kp_seconds = 0;
      } else {
        kp_seconds = parseInt(getCookie('custom_count_down'));
      }
      if (totalSeconds > kp_seconds) {
        totalSeconds = totalSeconds - kp_seconds;
      } else {
        totalSeconds = 0;
      }
      var custom_hours = Math.floor(totalSeconds / 3600);
      var custom_minutes = Math.floor((totalSeconds - (custom_hours * 3600)) / 60);
      var custom_seconds = totalSeconds - (custom_hours * 3600) - (custom_minutes * 60);
      custom_seconds = Math.round(custom_seconds * 100) / 100;
      custom_hours = (custom_hours < 0 ? "0" : custom_hours);
      custom_minutes = (custom_minutes < 0 ? "0" : custom_minutes);
      custom_seconds = (custom_seconds < 0 ? "0" : custom_seconds);
      console.log('sec = ' + custom_seconds + ' min = ' + custom_minutes + ' hrs = ' + custom_hours);
      nsec = get_random([05, 10, 15, 20, 25, 30, 35, 40, 45, 50, 55, 60]);
      nmin = get_random([05, 10, 15, 20, 25, 30, 35, 40, 45, 50, 55, 60]);
      nhrs = get_random([01, 02, 03, 04, 05, 06, 07, 08, 09, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23]);
      var ndat = date - 1;
      if (ndat < 0) {
        var mmon = d.getMonth();
        ndat = 30 + date - d.getDate() - ii
      }
      theSecsBox.html(("0" + nsec).slice(-2));
      theMinsBox.html(("0" + nmin).slice(-2));
      theHoursBox.html(("0" + nhrs).slice(-2));
      theDaysBox.html(ndat);
      var refreshId = setInterval(function() {
        var totalSeconds = 1500;
        var custom_count_down = parseInt(getCookie('custom_count_down'));
        if (getCookie('custom_count_down') != "" && totalSeconds > custom_count_down) {
          setCookie('custom_count_down', custom_count_down + 1, 1);
        } else if (totalSeconds == custom_count_down) {}
        var e = theSecsBox.text();
        var a = theMinsBox.text();
        var c = theHoursBox.text();
        var b = theDaysBox.text();
        if (e == 0 && a == 0 && c == 0 && b == 0) {} else {
          if (e == 0 && a == 0 && c == 0) {
            theDaysBox.html(("0" + (b - 1)).slice(-2));
            theHoursBox.html("23");
            theMinsBox.html("59");
            theSecsBox.html("59")
          } else {
            if (e == 0 && a == 0) {
              theHoursBox.html(("0" + (c - 1)).slice(-2));
              theMinsBox.html("59");
              theSecsBox.html("59")
            } else {
              if (e == 0) {
                theMinsBox.html(("0" + (a - 1)).slice(-2));
                theSecsBox.html("59")
              } else {
                theSecsBox.html(("0" + (e - 1)).slice(-2))
              }
            }
          }
        }
      }, 1000);
    });

    function setCookie(cname, cvalue, exdays) {
      var d = new Date();
      d.setTime(d.getTime() + (exdays * 24 * 60 * 60 * 1000));
      var expires = "expires=" + d.toUTCString();
      document.cookie = cname + "=" + cvalue + ";" + expires + ";path=/";
    }

    function getCookie(cname) {
      var name = cname + "=";
      var ca = document.cookie.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>
  <button type="submit" class="cart-btn" name="add" style="margin-bottom: 8px !important">Add to cart</button>
  <div data-v-2fbaaf05="" class="negotio-container"><!----></div>
  <figure class="atc_badge">
    <img src="//cdn.shopify.com/s/files/1/0030/8291/1833/files/dropship-theme-cc-logos-cart.png?v=1544600849">
  </figure>
  <!-- To remove stock bar	<div class="items-count" id="progress_bar"></div> -->
  <!-- To remove Timer -->
</form>

POST /contact#contact_form

<form method="post" action="/contact#contact_form" id="contact_form" accept-charset="UTF-8" class="contact-form"><input type="hidden" name="form_type" value="customer"><input type="hidden" name="utf8" value="โœ“">
  <div class="input-group">
    <input type="hidden" name="contact[tags]" value="newsletter">
    <input type="email" name="contact[email]" id="Email" class="input-group__field newsletter__input" value="" placeholder="Email address" autocorrect="off" autocapitalize="off" required="">
    <span class="input-group__btn">
      <button type="submit" class="btn newsletter__submit" name="commit" id="Subscribe">
        <span class="newsletter__submit-text--large">Subscribe</span>
      </button>
    </span>
  </div>
</form>

Text Content

dilutee.myshopify.com



X
 * ๐Ÿ  Home
 * Dilutee
   * ๐Ÿจ Home & Kitchen
   * ๐Ÿคธโ€โ™€๏ธ Health & Fitness
   * ๐Ÿƒโ€โ™€๏ธ Sports & Outdoors
 * Men
   * ๐Ÿ‘• Clothing
   * ๐Ÿ•ถ Accessories
   * ๐Ÿง” Grooming
 * Women
   * ๐Ÿ‘— Clothing
   * Sarees
   * Lehengas
   * ๐Ÿ‘œ Accessories
   * ๐Ÿ’„ beauty products
 * Kids
   * ๐Ÿง’ Clothing
   * Ethnic Wear - Boys
   * Ethnic Wear - Girls
   * ๐Ÿ›ด Toys & Games
 * Baby
   * ๐Ÿ‘ผ Clothing
   * ๐Ÿผ Accessories
 * Pets
 * Gadgets
 * Blog
 * ๐Ÿšš Track
 * ๐Ÿ’ฌ Reach
 * ๐Ÿค” FAQs

Free Shipping for all orders Today

Need Help? support@dilutee.com . (971) 339 0740 Register Login

 * 
 * 
 * * Register
   * Login
 * 0 MY CART(0 Items)
   
   Your cart is currently empty.

 * ๐Ÿ  Home
 * Dilutee
   * ๐Ÿจ Home & Kitchen
   * ๐Ÿคธโ€โ™€๏ธ Health & Fitness
   * ๐Ÿƒโ€โ™€๏ธ Sports & Outdoors
 * Men
   * ๐Ÿ‘• Clothing
   * ๐Ÿ•ถ Accessories
   * ๐Ÿง” Grooming
 * Women
   * ๐Ÿ‘— Clothing
   * Sarees
   * Lehengas
   * ๐Ÿ‘œ Accessories
   * ๐Ÿ’„ beauty products
 * Kids
   * ๐Ÿง’ Clothing
   * Ethnic Wear - Boys
   * Ethnic Wear - Girls
   * ๐Ÿ›ด Toys & Games
 * Baby
   * ๐Ÿ‘ผ Clothing
   * ๐Ÿผ Accessories
 * Pets
 * Gadgets
 * Blog
 * ๐Ÿšš Track
 * ๐Ÿ’ฌ Reach
 * ๐Ÿค” FAQs

search
๐ŸŽ‰ Hurry up! Super sale!

Limited time, limited quantities. Sale ends in

00
DAYS
:
00
HRS
:
00
MINS
:
00.00
SECS
:
 * Home
 * High Neck Tank Top

Previous

Next


HIGH NECK TANK TOP



$ 9.99 USD $61.93 CAD SAVE $49.31 CAD
ColorWhiteBlack
SizeSMLXLXXL
White / S - $ 9.99 USD Black / S - $ 9.99 USD White / M - $ 9.99 USD Black / M -
$ 9.99 USD White / L - $ 9.99 USD Black / L - $ 9.99 USD White / XL - $ 9.99 USD
Black / XL - $ 9.99 USD White / XXL - $ 9.99 USD Black / XXL - $ 9.99 USD


QUANTITY
 * 
 * 
 * 

Add to cart



HIGH NECK TANK TOPS WHITE AND BLACK

ย 

The high neck on this tank top won't ride up. Its snug fit and contoured
silhouette make it the perfect choice for curves. Its pro-performance fabric
wicks sweat to keep you dry. Order your Women's High Neck Tank Top here today!


You don't think you're going to look good in a white tank top? With our fresh,
original design, you'll look good in a white tank top. Customers say 'I've never
looked better!' Try one of our High Neck Tank Tops today, risk-free.


ย 


High Neck Tank Tops are cool, but sometimes it's hard to find the right one! We
can help you find the perfect style, even if you're new to tank tops! Customers
say, "I'd like to try some of your tops!". Try our High Neck Tank Tops Today.

ย 


High Neck Tank Top is our new launch,ย We have high-quality fabric and flawless
stitching, so you can be confident that your High Neck Tank Top will do well for
you!


ย 


HOW TO MEASURE THE SIZE OF THESE HIGH NECK TANK TOPS?

ย 



Specifics: (1cm=0.393inch,1inch= 2.54cm)




SIZE CHART FOR HIGH NECK TANK TOPS


ย Size ย Length ย Bust S 38 cm 74 cm M 39 cm 78 cm L 40 cm 82 cm XL 41 cm 86 cm 2
XL 42 cm 90 cm

ย 



Not having enough high neck tank tops? A high neck tank top that fits your body
perfectly. Customers say 'I will be wearing this all year.' Get the perfect high
neck tank top at dilutee today.

ย 


It's frustrating to be wearing a high neck top, but you don't have the
confidence to have it off around others. But let me help you. Not only will your
neck feel more comfortable, but you will feel better about yourself.




By just clicking add to cart, you will get a high neck top to wear. This will
help you feel more confident and you will look great while wearing it.

ย 







ย 

The horrible feeling of having to look down to see what you are wearing. Feeling
extremely embarrassed when the top is pulled down unexpectedly and you have to
run to the bathroom so fast you forget to take off your shoes.

ย 


High Neck Tank Top are just the perfect piece of clothing that blends both
fashion and function to satisfy all your needs. Modifications are easy and you
can change it to suit your outfit as often as you want.

ย 


Ultrathin Tank Top is truly lightweight and thin enough to wear under any other
layer. It's the perfect shirt to wear under any outfit. Order Yours at Dilutee
today!

ย 







ย 

The quality of this High Neck Tank Top makes it twice as comfortable as any
other. The tank top is designed to hold you in without being clingy.ย Women love
this tank top because they can wear it to work and look great.ย Order Your High
Neck Tank Top Today!

ย 



ย 

The girl with the most natural makeup and glowing skin at the party will always
be the most popular one. The high neck of this tank is so chic and sexy, you'll
be the envy of everyone who sees you. It's a tank top that has a high neck, so
you can show more skin and feel more feminine. Order it now!


ย 



ย 


HIGH NECK TANK TOP FOR WOMEN



All of our women's high neck tank tops come in black and white colors, and in
small, medium, large and extra-large sizes.

ย 


We have high neck tank tops for every size, style and occasion. From our
form-fitting, breathable and incredibly comfortable crew neck to our flattering
scoop necks, we have the perfect shirt for you.

ย 







The only reason high neck tank tops are in style is because they are cool. High
Neck Tank Top is not just a fashion statement. We know that our high neck tank
tops are cool. Our high neck tank tops are revolutionary. Our high neck tank
tops make you look cool.

High neck tank tops are great for wearing under your jacket or shirt. It is a
comfortable way to cover your cleavage. Shop Now and Thank Later!


Facebook Twitter Save Reddit

Get 10% OFF on your first order!
Join our email list to receive updates and exclusive offers.
00
DAYS
:
00
HRS
:
00
MINS
:
00.00
SECS
:

Thanks for subscribing!

Failed to submit the form. Please try again.

GET 10% OFF
You'll get 10% OFF!
Add this coupon to your checkout page.
00
DAYS
:
00
HRS
:
00
MINS
:
00.00
SECS
:
Copy
SHOP NOW


BUYER PROTECTION

Dilutee's Guarantee Covers Your Purchase From A Click Here To Delivery At Your
Door

SECURE PAYMENT

Pay With The World's Most Popular and Secure Payment Methods

DILUTEE.COM



 * Products
 * About Us
 * Shipping Policy
 * Refund Policy
 * Privacy Policy
 * Terms of Service

NEWSLETTER



Subscribe
 * 
 * 
 * 
 * 
 * 

Copyright ยฉ 2022 dilutee.com


PRODUCT ADDED TO YOUR CART

Continue Shopping View Cart
Add to cart

1
1