in Technology by

You are converting your HTML file into XHTML Strict. Which code snippet will validate without errors?

  • <html xmlns="http://www.w3.org/1999/xhtml">
        <head><title>XHTML Example</title></head>
        <body bgcolor="#FFFFFF" >
            <p>Content goes here ...</p>
        </body>
    </html>
    
  • <html xmlns="http://www.w3.org/1999/xhtml">
        <head><title>XHTML Example</title></head>
        <body name="bodySection">
            <p><b>Content goes here ...</b></p>
        </body>
    </html>
    
  • <html xmlns="http://www.w3.org/1999/xhtml">
        <head><title>XHTML Example</title></head>
        <body color="#333333">
            <p><i>Content goes here ...</i></p>
        </body>
    </html>
    
  • <html xmlns="http://www.w3.org/1999/xhtml">
        <head><title>XHTML Example</title></head>
        <body id="bodySelection">
            <p><strong>Content goes here ...</strong></p>
        </body>
    </html>

1 Answer

0 votes
by

correct answer is :- 

<html xmlns="http://www.w3.org/1999/xhtml">
    <head><title>XHTML Example</title></head>
    <body id="bodySelection">
        <p><strong>Content goes here ...</strong></p>
    </body>
</html> 

Related questions

0 votes
    What is this code an example of? A. null element B. self-closing tag C. improperly named element D. incorrect XML syntax...
asked Mar 10, 2023 in Technology by JackTerrance
0 votes
    You are working with the following XSD fragment. What does it say about the element? element has child elements which can appear in any order...
asked Mar 10, 2023 in Technology by JackTerrance
0 votes
    I am trying to pass a dataString to to an ajax call using JQuery. In the call, I construct the ... JavaScript Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Mar 11, 2022 in Education by JackTerrance
0 votes
    When working with Ajax applications, which is faster, XML or JSON? A. XML, because it is extensible B. JSON, ... D. JSON, because it is already parsed into a JavaScript object...
asked Mar 10, 2023 in Technology by JackTerrance
0 votes
    You are working with this XML code snippet from the XML document cars.xml. You need to return the information about the cars ... D.doc("cars.xml")/cars/car[integer(year) > 2000]...
asked Mar 10, 2023 in Technology by JackTerrance
0 votes
    how can you insert some other html text file into your one html file? write the tag used for this purpose? Select the correct answer from above options...
asked Nov 28, 2021 in Education by JackTerrance
0 votes
    How will you remove a file from Git without actually removing it from your local filesystem?...
asked Nov 4, 2020 in Technology by JackTerrance
0 votes
    What will be the output of the following Python code snippet? for i in [1, 2, 3, 4][::-1]: print (i) a) 4 3 2 1 b) error c) 1 2 3 4 d) none of the mentioned...
asked Jan 2, 2023 in Technology by JackTerrance
0 votes
    Which component is responsible for converting bytecode into machine specific code? (a) JVM (b) JDK (c) ... questions and answers pdf, java interview questions for beginners...
asked Oct 26, 2021 in Education by JackTerrance
0 votes
    People will normally think it as a normal/regular file and your secret message will pass on without any ... for-Cyber Security:,Cyber Security-Jobs:,Cyber Security Applications...
asked Oct 31, 2021 in Education by JackTerrance
0 votes
    Which of these code snippet is the correct format to run SQL queries? 1. display(spark.sqlContext("select * from Fresco")) 2 ... ")) 4. show(spark.sql("select * from Fresco"))...
asked Oct 22, 2020 in Technology by JackTerrance
0 votes
    Predict the output of the following code snippet function foo(input: boolean) { let one = 1200; if (input) { let ans ... 1. 1201 2. Undefined 3. Compilation error 4. Runtime error...
asked Jun 29, 2021 in Technology by JackTerrance
0 votes
    How to make a code snippet thread safe?...
asked Nov 10, 2020 in Technology by JackTerrance
0 votes
    Write code in HTML to divide the browser window into 3 horizontal sections and display college name in the top most frame. Select the correct answer from above options...
asked Dec 22, 2021 in Education by JackTerrance
...