FYBCS HTML & CSS Exercise 1

set A

1. Create an html5 page which will display names of your family member on separate lines in different sizes. State size of each line in its text.

2. create an html5 page which will display the names of India's President and their work period since our independence on separate lines in different colors. State color of each line in its text.

3. Create An Html5 Page Which Will Display Names of Indian cricket team with all the different text styles(bold, italic and underlined) and its combinations on separate lines. State style of each line in its text.

4. Create an html5 page containing the polynomial expression as follows:        a0+a1x + a2x2 +a3x3

set B

1. Create an html5 page with following specifications
   b. Put the windows logo image in the background 
   c. Place your college name at the top of the page in large text followed by address in smaller size



Post a Comment

6 Comments

  1. thanks Google for this help now I am so happy because now days my giving my exam

    ReplyDelete
  2. Can you share exercise 2,3,4....8

    ReplyDelete
  3. import time
    import sys


    def print_lyrics():
    lyrics = [
    "Mein ab kyun hosh main aata nahi?",
    "Sukoon yeh dil kyun paata nahi?",
    "Kyun torrun khud se jo thay waaday",
    "Ke ab yeh ishq nibhaana nahi?",
    "Mein morrun tum se jo yeh chehra",
    "Dobara nazar milana nahi",
    "Yeh duniya jaanay mera dard",
    "Tujhe yeh nazar kyun aata nahi?",
    ]

    delays = [0.3, 0.3, 0.4, 0.3, 0.3, 0.8]

    print("Pal Pal:\n")
    time.sleep(1.2)

    for i, line in enumerate(lyrics):
    for char in line:
    sys.stdout.write(char)
    sys.stdout.flush()
    time.sleep(0.06)
    print()
    if i < len(delays):
    time.sleep(delays[i])
    else:
    time.sleep(0.8)


    print_lyrics()

    ReplyDelete