200 OK 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: grb.com Accept: */* User-Agent: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; [email protected])
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> <meta name="applicable-device" content="pc"> <meta name="renderer" content="webkit"> <meta name="format-detection" content="telephone=no"> <meta name="viewport" content="width=device-width,initial-scale=1,minimum-scale=1,maximum-scale=1,user-scalable=no" /> <title>The domain name is for sale!</title> <script src="js/jquery.min.js"></script> <link href="css/contact.css?v=2023011101" rel="stylesheet" type="text/css"> </head> <body> <div class="header"> <div class="center"> <div class="logo"> <a href="https://dn.com"><img src="images/logo_c1.png" alt=""></a> </div> <div class="name">Global premium domain trading platform!</div> </div> </div> <div class="mainall"> <div class="bg"><img src="images/bg.jpg" alt=""></div> <div class="center"> <!--左边文案--> <div class="left"> <div class="text01">The domain name</div> <div class="text02">AA.COM</div> <div class="text01">is for sale!</div> <div class="text03"></div> <div class="text04">Great domain names make great brands. A good domain name helps your project achievegreat success.</div> <div class="text05"> <img src="images/ewm.png" alt=""> <div class="email"> <p>Telegram:@Fdomain</p> <a href="mailto:[email protected]">Email:[email protected]</a> <br> <p>Tel:+86 18273183888</p> </div> </div> </div> <!--右边表单--> <div class="right"> <form action="#"> <h3>Make an offer</h3> <input type="text" id="customer_name" value="" placeholder="Full Name*"/> <input type="text" id="customer_contact" value="" placeholder="Email Address*" required oninvalid="setCustomValidity('Please fill in your email');" oninput="setCustomValidity('')"/> <div class="list"> <input type="text" id="price" value="" placeholder="My Offer*" required oninvalid="setCustomValidity('Please fill in your bid');" oninput="setCustomValidity('')"/> <select id="price_unit"> <option value="2">USD</option> <option value="3">BTC</option> <option value="1">RMB</option> </select> </div> <textarea>My message or offer details.</textarea> <input type="submit" value="Submit" onclick="send_msg()" class="sub"> </form> </div> </div> </div> <div class="footer"> © 2024 Dn.com All Rights Reserved. </div> <script type="text/javascript"> var pathName=window.document.location.pathname; var domain = window.location.host; console.log(pathName); console.log(domain); //var domain = document.domain; if(domain==""||domain==null)domain="kr.com"; domain = domain.toUpperCase(); //alert(domain); $('title').text("The domain name "+ domain +"is for sale!"); $('.text02').text(domain); function send_msg() { var customer_contact = $("#customer_contact").val(); var price = $("#price").val(); var customer_name = $("#customer_name").val(); var senddata = { data: { domain: domain, customer_contact: customer_contact, price: price, price_unit: $("#price_unit").val(), type: 1, customer_name: customer_name, desc: $("#desc").val() } }; if (customer_contact == '') { return false; } if (customer_contact.search(/^\w+((-\w+)|(\.\w+))*\@[A-Za-z0-9]+((\.|-)[A-Za-z0-9]+)*\.[A-Za-z0-9]+$/) == -1) { alert("Please fill in your email correctly"); return false; } if (price == "") { return false; } $.post('https://www.vname.com/api/intention', senddata, function(data){ alert(data.errmsg); }, 'json'); } var _hmt = _hmt || []; (function() { var hm = document.createElement("script"); hm.src = "https://hm.baidu.com/hm.js?a359b33e5e9ae51547a8a2e074074a8e"; var s = document.getElementsByTagName("script")[0]; s.parentNode.insertBefore(hm, s); })(); </script> <!-- Google tag (gtag.js) --> <script async src="https://www.googletagmanager.com/gtag/js?id=G-B2WD7T9ZS1"></script> <script> window.dataLayer = window.dataLayer || []; function gtag(){dataLayer.push(arguments);} gtag('js', new Date()); gtag('config', 'G-B2WD7T9ZS1'); </script> </body> </html>