-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
37 lines (32 loc) · 1.76 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
31
32
33
34
35
36
37
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="This website simplify daily work tasks of Amount combinations finder">
<meta name="keywords" content="about us, website, copy, paste, colleagues, daily work tasks, productivity, Text to one line, Amount combinations finder">
<meta name="author" content="Mohsin Gabru">
<meta name="robots" content="index, follow">
<meta name="og:title" property="og:title" content="Ruin easyweb: Amount combinations finder - Mohsin Gabru">
<meta property="og:description" content="Simplify daily work tasks with Amount combinations finder - Mohsin Gabru.">
<meta property="og:site_name" content="Amount combinations finder - ruineasyweb - Mohsin Gabru">
<meta property="og:url" content="https://ruineasyweb.netlify.app/Amount-Combination-Finder/">
<link rel="canonical" href="https://ruineasyweb.netlify.app/Amount-Combination-Finder/">
<title>Amount Combination Finder - Mohsin Gabru</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<h1>Amount Combination Finder</h1>
<label for="targetSum">Target Sum:</label>
<input type="text" id="targetSum" placeholder="Enter target sum" oninput="validateInput()">
<br>
<label for="amounts">Amounts (one per line):</label>
<textarea id="amounts" rows="5" cols="30" placeholder="Enter amounts" oninput="validateInput()"></textarea>
<br>
<button type="submit" value="Submit" onclick="onFindCombination()">Find Combination</button>
<div id="result-container"></div>
<br><br>
<script src="script.js"></script>
<script src="home.js"></script>
</body>
</html>