-
Notifications
You must be signed in to change notification settings - Fork 4
/
index.html
37 lines (33 loc) · 1.41 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>
<head>
<title>NIC Scanner</title>
<link rel="stylesheet" href="styles/style.css">
<script src="scripts/script.js"></script>
</head>
<body>
<div class = "head">
<h1>NIC Scanner</h1>
</div>
<div class = "details">
<br>
<p>Enter Your Friends or Collegues or Employees <br>NIC Number (Old or New) and Check his/her Birthday.<br>We are also giving you the gender details also.</p>
</div>
<div class = "workspace">
<br>
<p>Enter NIC (Old / New) : <input type="text" name="nicInput" id="nicInput"></p>
<button name="" onclick="getNIC()">Find Out</button> <button type="reset" onclick="resetNIC()">Reset</button>
<br>
<div class = "txtall">
<p style="margin-right: 240px;" id = "nicNo">NIC No : </p>
<p style="margin-right: 180px;" id = "nicType">NIC Type : </p>
<p style="margin-right: 200px;" id = "gender">Gender : </p>
<p style="margin-right: 180px;" id = "bDay">Birth Day : </p>
</div>
</div>
<div class="footer">
<p>Desinged By : Randula Mawaththa</p>
<a href="mailto:[email protected]">[email protected]</a>
</div>
</body>
</html>