Track Your Order

<div>

<p> </p>

<p>Thank you for choosing <strong>Brand Name</strong> for your shopping needs! We're committed to delivering a top-notch experience. To keep an eye on your order's journey, just pop in your order number below.</p>

<br>

<p>Order Tracking Number:</p>

<!-- Input for the tracking number. --> <input style="background-color: white; color: black;" maxlength="50" id="YQNum" type="text"> <!-- Button to trigger the tracking script, with updated styles for black background and bold white text. --> <input style="background-color: black; color: white; font-weight: bold;" value="TRACK" type="button" onclick="doTrack()"> <!-- Container to display the tracking results. -->

<div id="YQContainer"></div>

<br>

<p>Enter your order number, hit "Track", and voila! You'll see the latest update on your order's status.</p>

<br>

<p>If you're scratching your head over anything related to your order, don't be a stranger! Reach out to us at <a href="mailto:support@brandname.com"

target="_blank">support@brandname.com</a>.</p>

<br>

<p>Big thanks again for shopping at <strong>Brand Name</strong>!</p>

</div>

<!-- Tracking script. Place this at the bottom of the page. It executes after the page has loaded. --> <script type="text/javascript" src="//www.17track.net/externalcall.js"></script> <script type="text/javascript">

// <![CDATA[

function doTrack() {

var num = document.getElementById("YQNum").value;

if(num===""){

alert("Please enter your tracking number.");

return;

} YQV5.trackSingle({

YQ_ContainerId:"YQContainer",

YQ_Height:560, YQ_Fc:"0",

YQ_Lang:"en",

YQ_Num:num

});

}

// ]]></script>