HTML code scrip for MD2 generator

Created on 3 July, 2024 • 101 views

HTML code scrip for MD2 generator

<!DOCTYPE html>

<html lang="en">

<head>

  <meta charset="UTF-8">

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

  <title>MD2 Generator</title>

</head>

<body>

  <h1>MD2 Generator</h1>

  <p>Enter a string to generate its MD2 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>