200 status code is a standard successful HTTP server response. It means that the client’s request (e.g., from a browser) was successfully processed, and the server is delivering the requested data.
The user receives content without errors, and the page or application functions properly. If Code 200 is accompanied by data, the browser or program processes and displays it to the user.
GET / HTTP/1.1 Host: n2h.com Accept: */* User-Agent: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; [email protected])
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <link rel="stylesheet" href="/css/style.css"> </head> <body> <div class="container"><div class="domain-container"><div id="domain-name" class="domain-name">N2h.com</div><title> - Site Name Reserved</title> <div class="available-text">Site Name Reserved</div> <div class="whatsapp-container"> <div class="modal"> <div class="subject-modal"> <input id="whatsAppDomainName" type="text" name="domainName" placeholder="Subject Site Name" style="display: none;" pattern="^[a-zA-Z0-9\.\-]+$" > </div> </div> <div class="whatsapp-container1" onclick="whatsAppClick(3248, '', 'Dear SyncPoint, I\'m contacting you regarding the N2h.com site name because I would like to _');" style="display: inline-flex; align-items: center;"> Contact via WhatsApp <img src="images/whatsapp-24.jpg" style="margin-left: 10px;"> </div> </div> </div><div class="show-case-domains-container"><a href="http://BrainBites.com" target="_new" class="show-case-domain"><span class="show-case-domain-name">BrainBites.com</span><span>34,700 USD</span></a><a href="http://Codus.com" target="_new" class="show-case-domain"><span class="show-case-domain-name">Codus.com</span><span>184,700 USD</span></a><a href="http://EmbraceCo.com" target="_new" class="show-case-domain"><span class="show-case-domain-name">EmbraceCo.com</span><span>8,300 USD</span></a><a href="http://GotData.com" target="_new" class="show-case-domain"><span class="show-case-domain-name">GotData.com</span><span>28,400 USD</span></a><a href="http://InfiniteCapital.com" target="_new" class="show-case-domain"><span class="show-case-domain-name">InfiniteCapital.com</span><span>243,700 USD</span></a><a href="http://OhMyGod.net" target="_new" class="show-case-domain"><span class="show-case-domain-name">OhMyGod.net</span><span>18,200 USD</span></a><a href="http://ParadisePonds.com" target="_new" class="show-case-domain"><span class="show-case-domain-name">ParadisePonds.com</span><span>7,400 USD</span></a><a href="http://SkylineContracting.com" target="_new" class="show-case-domain"><span class="show-case-domain-name">SkylineContracting.com</span><span>6,800 USD</span></a><a href="http://TeaWay.com" target="_new" class="show-case-domain"><span class="show-case-domain-name">TeaWay.com</span><span>34,700 USD</span></a></div></div></body></html><script type="text/javascript"> function escrowClick(domainId, referer) { console.log('DomainID: ' + domainId); // Show the modal const modal = document.querySelector('.escrow-subject-modal'); modal.style.display = 'flex'; const domainName = "N2h.com"; const inputBox = document.getElementById('escrowInput'); if (inputBox === null) { return false; } inputBox.style.display = 'block'; const form = document.querySelector('#escrow-form'); // Get the form element if (!form) { console.error('Form element not found!'); return false; } inputBox.addEventListener('keydown', function(event) { if (event.key === 'Enter') { event.preventDefault(); const sld = "N2h"; const urlPattern = new RegExp(`^(https?:\\/\\/)?(www\\.)?${sld}(\\.com)?$`, 'i'); // if (!urlPattern.test(inputBox.value.trim())) { // alert('Invalid Subject'); // return false; // } logEscrowClick(domainId, referer); console.log(form); form.submit(); return true; } }); console.log('Should not get here'); return false; } function whatsAppClick(domainId, referer, whatsappMessage) { // Show the modal const modal = document.querySelector('.subject-modal'); modal.style.display = 'flex'; const domainName = "N2h.com"; const inputBox = document.getElementById('whatsAppDomainName'); if (inputBox === null) { return; } inputBox.style.display = 'block'; inputBox.addEventListener('keydown', function(event) { if (event.key === 'Enter') { event.preventDefault(); const sld = "N2h"; const urlPattern = new RegExp(`^(https?:\\/\\/)?(www\\.)?${sld}(\\.com)?$`, 'i'); // if (!urlPattern.test(inputBox.value.trim())) { // alert('Invalid Subject'); // return; // } logWhatsAppClick(domainId, referer); // Get the WhatsApp number and message const whatsappNo = "17144775000"; console.log('WhatsAppNo:: ' + whatsappNo); // Construct the WhatsApp URL const whatsappURL = `https://wa.me/${whatsappNo}?text=${whatsappMessage}`; // Open the WhatsApp URL in a new tab window.open(whatsappURL, '_blank'); } }); } function logWhatsAppClick(domainId, referer) { var xhr = new XMLHttpRequest(); xhr.open("POST", "log_whatsapp.php", true); xhr.setRequestHeader("Content-Type", "application/x-www-form-urlencoded"); // Set up a callback for when the request completes xhr.onload = function() { if (xhr.status >= 200 && xhr.status < 300) { // Request was successful, handle response console.log("Response:", xhr.responseText); } else { // Handle error responses (4xx and 5xx) console.error("Error:", xhr.status, xhr.statusText, xhr.responseText); } }; // Set up a callback for when the request fails xhr.onerror = function() { console.error("Request failed:", xhr.statusText); }; // Send the request with parameters xhr.send("domain_id=" + encodeURIComponent(domainId) + "&referer=" + encodeURIComponent(referer)); } function logEscrowClick(domainId, referer) { console.log('DomainId: ' , domainId); console.log('Referer: ' , referer); var xhr = new XMLHttpRequest(); xhr.open("POST", "log_escrow.php", true); xhr.setRequestHeader("Content-Type", "application/x-www-form-urlencoded"); // Set up a callback for when the request completes xhr.onload = function() { if (xhr.status >= 200 && xhr.status < 300) { // Request was successful, handle response console.log("Response:", xhr.responseText); } else { // Handle error responses (4xx and 5xx) console.error("Error:", xhr.status, xhr.statusText, xhr.responseText); } }; // Set up a callback for when the request fails xhr.onerror = function() { console.error("Request failed:", xhr.statusText); }; // Send the request with parameters xhr.send("domain_id=" + encodeURIComponent(domainId) + "&referer=" + encodeURIComponent(referer)); } const adjustFontSize = () => { const domainName = document.getElementById('domain-name'); if (domainName === null) { return; } const text = domainName.textContent; const isMobile = window.innerWidth <= 768; // Only apply adjustments if in mobile view if (isMobile) { // Reset to default font size for recalculation domainName.style.fontSize = ''; // Optional: set a default font size in CSS // Get the available width of the container and subtract padding and borders const computedStyle = window.getComputedStyle(domainName); const padding = parseFloat(computedStyle.paddingLeft) + parseFloat(computedStyle.paddingRight); const border = parseFloat(computedStyle.borderLeftWidth) + parseFloat(computedStyle.borderRightWidth); const containerWidth = domainName.clientWidth - padding - border; // Adjust for padding and borders console.log('ContainerWidth: ', containerWidth); // Start with a base font size let fontSize = 36; // Start with your desired font size domainName.style.fontSize = `${fontSize}px`; // Set initial font size // Create a temporary canvas element to measure text width const canvas = document.createElement('canvas'); const context = canvas.getContext('2d'); context.font = `${fontSize}px sans-serif`; // Use the same font as in your CSS // Measure the text width let textWidth = context.measureText(text).width; // Add a buffer for comparison (e.g., 2 pixels) const buffer = 2; // Decrease font size until the text fits within the container while (textWidth > containerWidth - buffer && fontSize > 10) { // Minimum font size threshold fontSize -= 1; // Decrease font size by 1px domainName.style.fontSize = `${fontSize}px`; context.font = `${fontSize}px sans-serif`; // Update font in context textWidth = context.measureText(text).width; // Re-measure text width } console.log('Font size: ', fontSize); } else { // Reset to default if not mobile domainName.style.fontSize = ''; // Reset to default } }; // Initial check on DOMContentLoaded document.addEventListener('DOMContentLoaded', adjustFontSize); // Add resize event listener window.addEventListener('resize', adjustFontSize); </script>