-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathissue.html
More file actions
30 lines (27 loc) · 963 Bytes
/
issue.html
File metadata and controls
30 lines (27 loc) · 963 Bytes
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>
<i><center>ISSUING BOOKS</center></i>
</head>
<body>
Subject:<select name="maths"><option value="a">MATHEMATICS</option>
<option value="b">MECHANICS</option>
<option value="c">PHYSICS</option>
</select><br><br>
Date of issue:<input type="date" id="f1" value="date"><br><br>
No of days:<input type="radio" name="no of days" value="1">1
<input type="radio" name="no of days" value="2">2
<input type="radio" name="no of days" value="3">3
<input type="radio" name="no of days" value="4">4
<input type="radio" name="no of days" value="5">5
<input type="radio" name="no of days" value="6">6
<input type="radio" name="no of days" value="7">7
<button onclick="myFunction()">NOTE</button><br><br>
No of books:<input type="number" id="f2" value="number"><br><br>
<p id="demo"></p>
<script>
function myFunction() {
document.getElementById("demo").innerHTML = "if you exceed more than 7 days.then you will be fined 1day=10Rs";
}
</script>
</body>
</html>