Test Online


Test Online

  • (1) What does HTML stand for?
    Hyper Text Markup Language
    Home Tool Markup Language
    Hyperlinks and Text Markup Language

    (2)Who is making the Web standards?
    Microsoft
    Netscape
    The World Wide Web Consortium
    OSI

    (3) What is the correct HTML for adding a background color?
    <background>yellow</background>
    <body color="yellow">
    <body bgcolor="yellow">

    (4)How can you make an e-mail link?
    <a href="xxx@yyy">
    <a href="mailto:xxx@yyy">
    <mail href="xxx@yyy">
    <mail>xxx@yyy</mail>

    (5) What is the correct HTML for making a text area?
    <textarea>
    <input type="textarea">
    <input type="textbox">

    (6)What is a correct XHTML tag for a line break?
    <br />
    <br>
    <break/>

    (7)What are the different DTDs in XHTML?
    Strict, Transitional, Frameset
    Strict, Transitional, Loose, Frameset
    Strict, Transitional, Loose

    (8)How do you insert a comment in a CSS file?
    // this is a comment //
    // this is a comment
    ' this is a comment
    /* this is a comment */

    (9)How do you display hyperlinks without an underline?
    a {decoration:no underline}
    a {text-decoration:no underline}
    a {text-decoration:none}

    (10)Is this a "well formed" XML document?

    <?xml version="1.0"?>
    <to>Tove</to>
    <from>Jani</from>
    <heading>Reminder</heading>
    <body>Don't forget me this weekend!</body>

    No
    Yes