Please Subscribe My YouTube Channel

Showing posts with label O level Practical. Show all posts
Showing posts with label O level Practical. Show all posts

Friday, June 07, 2024

Calculator Practical & Project (O Level)

Calculator Practical & Project (O Level)








<html>
<head>
</head>
<body>
    <center>
    <h1>Calculator</h1>
    <caption>ITCI Computer Hardoi</caption></center><br>

<script>
function insert(num){
document.form.textView.value=document.form.textView.value+num;
}
function equal(){
var exp = document.form.textView.value;
if(exp){
document.form.textView.value=eval(document.form.textView.value);
}
}
function c(){
document.form.textView.value=" ";
}
</script>
<center>
    <div style="border:2px groove red;width:140;background:pink;border-radius:4px">
<form name="form">
<input type="text" name="textView"style="width:140px;height:30px;background:seagreen;border:2px solid green;color:white;"><br><br>
<input type="button" value="1" onclick="insert(1)"/>
<input type="button" value="2" onclick="insert(2)"/>
<input type="button" value="3" onclick="insert(3)"/>
<input type="button" value="+" onclick="insert('+')"/>
<br><br>
<input type="button" value="4" onclick="insert(4)"/>
<input type="button" value="5" onclick="insert(5)"/>
<input type="button" value="6" onclick="insert(6)"/>
<input type="button" value="-" onclick="insert('-')"/>
<br><br>
<input type="button" value="7" onclick="insert(7)"/>
<input type="button" value="8" onclick="insert(8)"/>
<input type="button" value="9" onclick="insert(9)"/>
<input type="button" value="*" onclick="insert('*')"/>
<br><br>
<input type="button" value="0" onclick="insert(0)"/>
<input type="button" value="/" onclick="insert('/')"/>
<input type="button" value="=" onclick="equal()"/>
<input type="button" value="C" onclick="c()"/>
<br><br>
<img src="D:\logo\best logo new.PNG"width="30"height="20">
</form>
</div>
</center>
</body>
</html>

Admission Form (O level Practical)

O level Practical :-   Admission  Form









<html>
<head>
<title> Admission Form</title>
</head>
<body><center><h1> <font color=green> Welcome To Infotech Computer Institute Hardoi</font></h1></center>
<form>
<table width="80%" align="center" border="2"> <tr><th colspan="2">Addmision Form</th></tr>
<tr><td> Full Name:</td>
<td><input type="text" placeholder="Enter your Full name"></td></tr>
<tr><td>Select Your Gender</td>
<td><input type="radio" checked name="Gender" value="Male"> Male
<input type="radio" name="Gender" value="Female"> Female</td></tr>

<tr>
<td>Select Course</td>
<td><select> <option value="0">–Select Course–</option>
<option value="CCA">CCA</option>
<option value="BCA">BCA</option>
<option value="CCC">CCC</option>
<option value="DCA">DCA</option>
<option value="ADCA">ADCA</option>
<option value="ADFA">ADFA</option>
<option value="DFA">DFA</option>
<option value="CCC+">CCC+</option>
<option value="BCC">BCC</option>
<option value="DTP">DTP</option>
</select></td>
</tr>

<tr><td>Qualifications</td>
<td>
<input type="checkbox" name="qly">10<sup>th</sup> <input type="checkbox" name="qly">12<sup>th</sup>
<input type="checkbox" name="qly">ITI <input type="checkbox" name="qly"> Diploma
<input type="checkbox" name="qly">PolyTechnic <input type="checkbox" name="qly"> Diploma</td>
<tr><tr> <td>Enter Your Email</td>
<td><input type="email" name="email" placeholder="e.g. abc@gmail.com"></td></tr
<tr>
<td>Create New Password</td> <td><input type="Password"></td> </tr>
<tr>
<td colspan="2" align="center">
<input type="Submit" value="Submit">
<input type="Reset" value="Reset"></td>
</tr>
</table>
</form>
</body>
</html>


Output:-