HTML code scrip for MD4 generator.

Created on 3 July, 2024 • 106 views

HTML code scrip for MD4 generator.

<!DOCTYPE html>

<html lang="en">

<head>

  <meta charset="UTF-8">

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

  <title>MD4 Hash Generator</title>

  <script src="script.js"></script> </head>

<body>

  <h1>MD4 Hash Generator</h1>

  <p>Enter a text string to generate its MD4 hash:</p>

  <input type="text" id="inputText" placeholder="Enter your text here">

  <button onclick="generateHash()">Generate Hash</button>

  <p id="hashOutput"></p>


  <script src="script.js"></script> </body>

</html>