-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
53 lines (48 loc) · 1.95 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
<!DOCTYPE html>
<html lang="en" dir="rtl">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>DetectIranianBankWeb</title>
<meta name='description' content='Detect Iranian Bank | تشخیص بانک از روی شماره کارت ایران'>
<meta name="keywords" content="bank, bank-detector, تتسخیص بانک">
<meta name="robots" content="index, follow" />
<link rel="stylesheet" href="assets/css/main.css">
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon">
<script defer type="module" src="detect-bank.js"></script>
<script defer type="module" src="assets/js/main.js"></script>
</head>
<body>
<main>
<div class="box__main">
<div class="box__title">
<img src="images/card-icon.svg" alt="card-icon">
<h2>تشخیص شماره کارت</h2>
</div>
<hr class="horizontal-line">
<div class="box__body">
<p class="box__description">
شماره کارت خود را وارد کنید
</p>
<div class="box__input">
<input type="text" id="txtNumBank1">
<input type="text" id="txtNumBank2">
<input type="text" id="txtNumBank3">
<input type="text" maxlength="4" id="txtNumBank4">
</div>
<div class="box-detectedbank">
<img class="detectedbank__logo" src="images/card-icon.svg" width="25" height="25" alt="day bank">
<p class="detectedbank__name">بانک دی</p>
</div>
</div>
</div>
</main>
<footer>
<p>
The
<a href="https://github.com/BaseMax/DetectIranianBankWeb">github repo</a>
</p>
</footer>
</body>
</html>