-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
30 lines (30 loc) · 1.11 KB
/
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
<html>
<head>
<title>MD5 GENERATOR</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="author" content="colorlib.com">
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon">
<link href="https://fonts.googleapis.com/css?family=Poppins:400,800" rel="stylesheet" />
<link href="css/main.css" rel="stylesheet" />
</head>
<body>
<section class="main">
<form>
<fieldset>
<legend>MD5 GENERATOR</legend>
<div class="inner-form">
<div class="input-field">
<textarea class="form-control" id="md5_input" placeholder="Type Something for generating md5"></textarea>
</div>
</div>
</fieldset>
<div class="show_output"></div>
</form>
</div>
<script src="https://code.jquery.com/jquery-3.3.1.slim.js"></script>
<script src="js/extention/jq-md5.js"></script>
<script src="js/custom.js"></script>
</body>
</html>