Posts

Showing posts from September, 2023

ADVANCED JAVASCRIPT

7 Differnt Background Color <!DOCTYPE html> <html>   <head><title>Backgroung color javascript program</title>    <script type="text/javascript">      function fun1()         {           document.bgColor="blue";   window.setTimeout("fun2()",2000); } function fun2()         {           document.bgColor="yellow";   window.setTimeout("fun3()",2000); } function fun3()         {           document.bgColor="red";   window.setTimeout("fun4()",2000); } function fun4()         {           document.bgColor="green";   window.setTimeout("fun5()",2000); } function fun5()         {           document.bgColor="orange";   window.setTimeout("fun6()",2000); } functi...

Marks Distribution

  INFORMATION   TECHNOLOGY Topic Wise Marks Distribution for Annual Examination Chapter No Chapter Name Marks Marks with options 1. Advanced Web Designing 20 25 2. Introduction to SEO (Search Engine Optimization) 10 12 3. Advanced Javascript 15 20 4. Emerging Technology 10 12 5. Server-Side Scripting (PHP) 15 15 6. E-Commerce and E-governance 10 12   Annual Examination Question Paper Format For XII (SCIENCE) IT Marks: 80                                             ...

HTML AND JAVASCRIPT PROGRAM LIST

  ADVANCED WEB DESIGNING         Write a program using HTML                                                                    A) Write a program using html with following CSS specification -   1. The page should contain heading as XII INFORMATION          TECHNOLOGY. 2. Create unordered list of topics in IT 3. Change the font to “Comic sans MS”      B) Write Html5 code with CSS as follows- 1. To create form to accept name, age, email address, date of appointment,       From the user. 2. Create a submit button to send the data. 3. The heading of the form ...