1. Question: On one of your Web pages named Listing.html, you specified a target like this: <a name="target4">Old Listing</a> How will you make a link to the above target?

    A
    <a url="#target4">Check Old Listing as well</a>

    B
    <a href="#target4">Check Old Listing as well</a>

    C
    <link url="target4">Check Old Listing as well</link>

    D
    <a href="Listing.target4">Check Old Listing as well</a>

    Note: Not available
    1. Report
  2. Question: Which attribute specifies the submit URL in a form tag?

    A
    method

    B
    action

    C
    name

    D
    id

    Note: Not available
    1. Report
  3. Question: The tag which is used to show monospaced text is:

    A
    <td>

    B
    <th>

    C
    <tt>

    D
    <b>

    Note: Not available
    1. Report
  4. Question: Consider the following code snippet:
    <div id="sectors">
        <div id="A" class="A"></div>
        <div id="B" class="B"></div>
        <div id="C" class="C"></div>
        <div id="D" class="D"></div>
        <div id="E" class="E"></div>
    </div>
    With these style rules:
    <style>
    #sectors > div {
        float: left;
        position: relative;
        width: 80px;
        height: 80px;
        margin: 16px;
     background-color:red; color: white;
     text-align: center;
    }
    #sectors > div::after {
        content: attr(id) '-Block';
    }
    #sectors > div.changecolor {
        background-color: blue;
    } 
    </style>
    Which of the following code snippets when inserted into CSS will change the A and B div’s color from red to blue?

    A
    In style rule add this code “#sectors > div:not(.C):not(.D):not(.E) {background-color: blue;}”

    B
    In style rule add this code “#sectors > div:not(.C, .D, .E) {background-color: blue;}”

    C
    Both A and B

    D
    None

    Note: Not available
    1. Report
  5. Question: Which of the following will create a triangle effect using pure CSS3 on a white background, without making use of background images?

    A
    It is not possible to do so.

    B
    border-color: #a0c7ff #ffffff #ffffff #ffffff; border-style: solid; border-width: 20px; width: 0px; height: 0px;

    C
    background-color: #a0c7ff #ffffff #ffffff #ffffff; border-style: solid; border-width: 20px; width: 0px; height: 0px;

    D
    background-color: #a0c7ff #ffffff #ffffff #ffffff; border-style: solid; border-width: 1px; width: 10px; height: 10px;

    Note: Not available
    1. Report
  6. Question: Can a percentage value be given in a ruby-align property?

    A
    Yes

    B
    No

    Note: Not available
    1. Report
  7. Question: Consider the following font definition: font-weight:normal What is the other way of getting the same result?

    A
    font-weight:100

    B
    font-weight:900

    C
    font-weight:400

    D
    ont-weight:700

    Note: Not available
    1. Report
  8. Question: Consider the following code:
    div[class^="stronger"] { }
    {em
    ...
    }
    Which of the following statements is true?

    A
    It applies the rule only on divs who belong to a class that begins with "stronger".

    B
    It applies the rule only on divs of class "stronger".

    C
    It applies the rule only on divs who belong to a class which end with "stronger".

    D
    It applies the rule only on divs who belong to a class which does not contain "stronger" in its name.

    Note: Not available
    1. Report
  9. Question: For the clear property, which of the following values is not valid?

    A
    none

    B
    left

    C
    right

    D
    top

    Note: Not available
    1. Report
  10. Question: What will be the output of the following code?
    <style>
    .foo {
        width:100px;
        height:50px;
        border-width:3px;
        -webkit-border-image: 
            -webkit-gradient(linear, 0 0, 0 100%, from(black), to(red)) 1 100%;
        -webkit-border-image: 
            -webkit-linear-gradient(black, red) 1 100%;
        -o-border-image:
                 -o-linear-gradient(black, red)) 1 100%;
        -moz-border-image:
               -moz-linear-gradient(black, red) 1 100%;    
    
    }
    </style>
    
    <div  class="foo">Lorem</div>

    A
    The text "Lorem" will be colored black-red.

    B
    The div element will be colored black-red.

    C
    The border of div element will be colored black-red.

    D
    None

    Note: Not available
    1. Report
Copyright © 2025. Powered by Intellect Software Ltd