HTML script for Reverse IP Lookup

Created on 3 July, 2024 • 98 views

HTML script for Reverse IP Lookup

<!DOCTYPE html>

<html>

<head>

 <title>Reverse IP Lookup</title>

</head>

<body>

 <h1>Reverse IP Lookup</h1>

 <p>Enter an IP address to find associated domains:</p>

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

  <label for="ip">IP Address:</label>

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

  <br><br>

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

 </form>

</body>

</html>