HTML code scrip for Whois Lookup

Created on 3 July, 2024 • 77 views

HTML code scrip for Whois Lookup

<!DOCTYPE html>

<html lang="en">

<head>

  <meta charset="UTF-8">

  <meta name="viewport" content="width=device-width, initial-scale=1.0">

  <title>Whois Lookup</title>

</head>

<body>

  <h1>Whois Lookup</h1>

  <p>Enter a domain name to perform a Whois lookup:</p>

  <form action="whois_lookup.php" method="post">

    <label for="domain">Domain Name:</label>

    <input type="text" id="domain" name="domain" required>

    <button type="submit">Lookup</button>

  </form>

</body>

</html>