Journal File 11th IT-1
Journal File 11th IT-1
<html>
<head>
<title>11th science</title>
</head>
<body>
<h1>15 01 2025</h1>
</body>
</html>
Output:
Practical 2:
Design a HTML page to print the following table:
<!DOCTYPEhtml>
<html>
<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>
</head>
</tr>
<tr>
</tr>
</table>
<br> <br>
</body>
</html>
Address.html
<html>
<head>
<title> Address </title>
</head>
<body>
<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>
</title>
</head>
<body>
</img>
</body>
</html>
Output:
Practical 5:
Design a form by using HTML code.
<!DOCTYPE html>
<html>
<head>
<title>Form design</title>
</head>
<body>
Standard<br>
Optional Subject<br>
Address
<textarea name="address" rows=3 cols=30></textarea><br>
</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;
</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;
a=3.14*r*r;
</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”>
<script type=”text/javascript”>
var a,b;
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: