0% found this document useful (0 votes)
10 views13 pages

Journal File 11th IT-1

Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
10 views13 pages

Journal File 11th IT-1

Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 13

Practical 1:

Design a HTML page to print a message on a web browser.

<html>

<head>

<title>11th science</title>

</head>

<body>

<h1>15 01 2025</h1>

<p>this is the first it practical of html </p>

</body>

</html>

Output:

Practical 2:
Design a HTML page to print the following table:
<!DOCTYPEhtml>

<html>

<head><title>Table with rowspan attribute</title></head>

<body>

<table border="3">

<tr><td rowspan=2>Colors</td>

<td bgcolor=red>Red</td></tr>

<tr>

<td bgcolor=green>Green</td></tr>

</table>

</body>

</html>

Output:
Practical 3:
Write a program in HTML to print the Birthday Invitation card.

<!DOCTYPE html>

<html>

<head>

<title> invitation </title>

</head>

<body colour = "sky blue" align="center">

<h1><i><u> Brithday invitation </u></i></h1>

<p> You are invited to the birthday party on 21 <sup> st </sup>January,2025</p>

<p><b><u> Schedule </u></b></p>

<table border="2" align="center"><tr>

<th> Cake cutting </th>

<td> 8:00 pm </td>

</tr>

<tr>

<th> Dinner </th>

<td> 9:00 pm </td>

</tr>

</table>

<br><br><aside> <a href="address.html">

Click on the link to see

the address </a></aside>

<br> <br>

<footer> Thanking you <sub> see you soon </sub> </footer>

</body>

</html>

Address.html

<html>

<head>
<title> Address </title>

</head>

<body>

<h2><u> Address </u> </h2>

<p>Flat 101, ABC building , Wayle nagar , Golden park , Kalyan west 421301.</p>

</body>

</html>

Output:
Practical 4:
Create a web page using HTML to demonstrate Image.

<html>

<head>

<title>

Program on image demostration

</title>

</head>

<body>

<img src="maharaj.jpg" height="300" width="720" alt="some picture">

</img>

</body>

</html>

Output:
Practical 5:
Design a form by using HTML code.

<!DOCTYPE html>

<html>

<head>

<title>Form design</title>

</head>

<body>

Name <input type="text"><br>

Standard<br>

<input type="radio" name="r" value="11">11<sup>th</sup><br>

<input type="radio" name="r" value="12">11<sup>th</sup><br>

Optional Subject<br>

<input type="checkbox" name="c1" value="Maths">Maths<br>

<input type="checkbox" name="c2" value="Geography">Geography<br>

<input type="checkbox" name="c3" value="Biology">Biology<br>

<input type="checkbox" name="c4" value="IT">IT<br>

Address
<textarea name="address" rows=3 cols=30></textarea><br>

<input type="submit" value="Submit">

</form>

</body>

</html>

Output:

Practical 6:
Create JavaScript program to find addition, subtraction, multiplication and division of two
integers.

<!DOCTYPE html>

<html>

<head>

</head>

<body>

<script type="text/javascript">

var a,b,c,d,e,f;

a=2;

b=5;
c=a+b;

d=a-b;

e=a*b;

f=a/b;

document.write("Addittion of two number is "+c+"<br>");

document.write("Subtraction of two number is "+d+"<br>");

document.write("Multiplication of two number is "+e+"<br>");

document.write("Division of two number is "+f+"<br>");

</script>

</body>

</html>

Output:

Practical 7:
Create a JavaScript program to find area of circle.

<!DOCTYPE html>

<html>

<head>

</head>
<body>

<script type="text/javascript">

var r,a;

r=prompt("Enter the Radius");

a=3.14*r*r;

document.write("Area of a cricle is "+a);

</script>

</body>

</html>

Output:
Practical 8:
Design a Javascript program to check whether entered number is odd or even.

<!DOCTYPE html>

<html>

<head>

</head>

<body bgcolor=”green”>

<h1> Program to check number is even or odd </h1>

<script type=”text/javascript”>

var a,b;

a=prompt(“Enter your value: “);

b=parseInt(a);

if(b%2==0)

alert(“Number is even”);

else

alert(“Number is odd”);
</script>

</body>

</html>

Output:
Practical 9:
Create a resume using LibreOffice that should contain the following:

• Title at the center with applicable font and size.


• It should contain points such as Name, Address, Mobile number, Date of birth, Nationality,
Caste, Category, Hobbies etc. Add some extra points.
• For educational qualifications a student should insert a table.
• At the end students should write a few lines about their aim.
Practical 10:
Create an informative presentation on your college:

• Presentation should contain minimum 8 slides.


• One slide should contain a chart.
• One slide with an image.
• Each slide should contain custom animation & slide transition effect.

You might also like