O Level Previous paper
رفتن به کانال در Telegram
https://youtube.com/@Satya806 सभी लोग इस Channel को Subscribe कर लो https://t.me/O_levelpaper Telegram group Quiz 👉https://t.me/o_levelsatya #M4-R5_Paper #M2R5 #O_Level #M3R5_Notes #M1R5Video #PaidClass_O_Level #O_Level_Notes #Satya_Sir
نمایش بیشتر764
مشترکین
-124 ساعت
+37 روز
اطلاعاتی وجود ندارد30 روز
آرشیو پست ها
Python
Q(1) Print the Current date and Time in a format was ( year_month_Day Hour:minute)
Q(2) dictionary with Roll no and Perecent of 10 Students Write a Program To Print Only Those Roll No. Form the dict Where Perecent is greater then 50
Q(3) Write a Program to Calculator Factorial of Number using Recursion
Q(1) Create a Simple Form, fields are Name, Email, Address, Phone, Age
Q(2)Create two Colums Using Frame Set and Insert Two Image is it
Q(3)Write Html Code To Insert Two Images and Write a slogan Which Should Blinks
#M2R5
This is heading 1
This is heading 2
This is heading 3
This is heading 4
This is heading 5
This is heading 6
O Level Practical Exam 2025
<!DOCTYPE html>
<html>
<body>
<h1>Form with radio buttons</h1>
<form action="/action_page.php" method="get">
<input type="radio" id="html" name="fav_language" value="HTML">
<label for="html">HTML</label><br>
<input type="radio" id="css" name="fav_language" value="CSS" checked="checked">
<label for="css">CSS</label><br>
<input type="radio" id="javascript" name="fav_language" value="JavaScript">
<label for="javascript">JavaScript</label><br><br>
<input type="submit" value="Submit">
</form>
</body>
</html>
<!DOCTYPE html>
<html>
<body>
<h1>Form with checkboxes</h1>
<form action="/action_page.php" method="get">
<input type="checkbox" name="vehicle1" value="Bike">
<label for="vehicle1"> I have a bike</label><br>
<input type="checkbox" name="vehicle2" value="Car">
<label for="vehicle2"> I have a car</label><br>
<input type="checkbox" name="vehicle3" value="Boat" checked>
<label for="vehicle3"> I have a boat</label><br><br>
<input type="submit" value="Submit">
</form>
</body>
</html>
<!DOCTYPE html>
<html>
<head>
<style>
fieldset {
background-color: #eeeeee;
}
legend {
background-color: gray;
color: white;
padding: 5px 10px;
}
input {
margin: 5px;
}
</style>
</head>
<body>
<h1>The fieldset element + CSS</h1>
<form action="/action_page.php">
<fieldset>
<legend>Personalia:</legend>
<label for="fname">First name:</label>
<input type="text" id="fname" name="fname"><br><br>
<label for="lname">Last name:</label>
<input type="text" id="lname" name="lname"><br><br>
<label for="email">Email:</label>
<input type="email" id="email" name="email"><br><br>
<label for="birthday">Birthday:</label>
<input type="date" id="birthday" name="birthday"><br><br>
<input type="submit" value="Submit">
</fieldset>
</form>
</body>
</html>
This is an inline span Hello World element inside a paragraph.
The SPAN element is an inline element
A Description List
- Coffee
- - black hot drink
- Milk
- - white cold drink
HTML List Tags
Tag Description
<ul> Defines an unordered list
<ol> Defines an ordered list
<li> Defines a list item
<dl> Defines a description list
<dt> Defines a term in a description list
<dd> Describes the term in a description list
#M2R5
