55
MULTIMEDIA AND WEB DESIGNING

254416075 Multimedia and Web Designing

Embed Size (px)

DESCRIPTION

Enjoy!!!

Citation preview

MULTIMEDIA AND WEBDESIGNING

1.Code for order and unorder list2.Code for image. as hyperlinks3.Code for simple table4.Code for complex table5.Demonstration of font tag6.Distribution of page in twovertical parts7.Distribution of page in twohorizontal parts8.Demonstration of nested if9.Demonstration of marquee tag10. Code for log-in form11. Code for admission form12. Code for targeted frameset1. Print "HELLO" using Vbsript

2. Addition of two numbers

3. Swapping of two numbers without using

third variable4.Swapping of numbers using thirdvariable5.Print 10 to 16. Print sum of all odd elements between 1 to 507. Print sum of all even number between 1

to 508. Print sum of digits in a given number

9. Read array of 5 elements and show it

10. Print sum of all array elements

11. Print 1-D array in reverse order

12. Represent 2-D array (3 by 3)

13. Print 2-D array in reverse order

14. Print 2-D array in inverse format

15. Demonstrate use of date function

16. Demonstrate use of math function

17. Demonstrate use of string function

18. Demonstrate function and procedure of

V.B19. Find factorial of given number using sub-procedure20. Check whether the number is Armstrong1.Print "HELLO" using ASP 2.Demonstrate use of gate method 3.Demonstrate use of applicationobject4.Print sum of 1-100 using ASP 5.Demonstrate use of post method6.Demonstrate use of add rotator component

list

  1. Science
  2. Biology
  3. Maths
  4. Physics
  5. Chemistry
  • Commerce
  • Accounts
  • Maths
  • OC
  • SP

CODE FOR SIMPLE TABLE

simple table

Rollno.NameHouseMarks01AARed9202BBGreen8903CCYellow7304DDblue9505EERed75

Complex Table MARKSHEETRoll no.NameMarks theorypracticaltotal 01AA502575 02BB602989 03CC552580

font tag Hello Friends!!!

Hello Friends!!! DISTRIBUTE PAGE INTO TWO HORIZONTALPARTS

form

User name
E-mail
Password

CODE FOR ADMISSION FORM

form

First Name:
Middle Name:
Last Name:
Address:
Phone No:.
Last year %:
Gender:MaleFemale
Course:MedicalEngineering
DesigningBuisness

TARGETED FRAMESET

link

p1
p2
p3

Print HELLO using Vbsrcipt

document.write ("HELLO FRIENDS")

Addition of two numbers

dim a,ba=10b=20c=a+bdocument.write ("sum= " & c)

Swapping of numbers without using 3rd variable

dim a,ba=10b=20b=a+b a=b-a b=b-adocument.write ("after swaping a= " &a & "b= " &b)

Print 10 to 1

dim x = 1while x