-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
41 lines (29 loc) · 942 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<!-- <meta name="viewport" content="width=device-width, initial-scale=1.0"> -->
<title>MD5 Hash Generator</title>
<link rel="icon" type="image/png" href="favicon.png">
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<h1 id="h1">MD5 Hash Generator</h1>
<script src="script.js"></script>
<div class="container">
<form name="form1" id="form">
<div class="form1">
Enter string: <input type="text" name="t1" id="a1"> <br><br>
<input type="button" id="btn" value="Generate" onclick="display()">
<br><br>
MD5 Hash : <input type="text" name="t2" id="a2" readonly>
<input type="button" id="btn2" value="Copy" onclick="copy()">
</div>
</form>
</div>
<footer>
<p id="f2">Made with ♥ by Pranav<br>
<a href="https://github.com/pranavkale07/MD5_Hash" target="_blank" id="f2">Source code</a></p>
</footer>
</body>
</html>