--%>

Determine incorrect tags in HTML

What is incorrect with my < br > Tags?

E

Expert

Verified

When you are used HTML syntax, you can write your <br> tags as into the paragraph below:
< p >
I love the way you look at me, < br >
Your eyes bright and blue. < br >
I love the way you help me, < br >
< /p >
But such paragraph will be invalid when XHTML documents, as all 4 < br > are not closed. You must change this to:
< p >
I love the way you look at me, < br/ >
Your eyes bright and blue. < br/ >
I love the way you help me, < br/ >
< /p >

   Related Questions in Programming Languages

  • Q : What do you mean by program counter

    What do you mean by the term program counter? Write down its use?

  • Q : What is Discrete simulation Discrete

    Discrete simulation: In a discrete simulation, the time passes at an irregular rate which is determined by the primary events of interest in simulation.

  • Q : Define the term non-XML resource Define

    Define the term non-XML resource?

  • Q : What is Memory leak Memory leak : It is

    Memory leak: It is a situation in which memory which is no longer being employed has not been returned to the pool of free memory. The garbage collector is designed to return unreferenced objects to the free memory pool in order to shun memory leaks.<

  • Q : Define Finite State Machines Finite

    Finite State Machines : A Finite State Machine (FSM) is one of the most suitable models for formal checks, especially for concurrent systems. However, FSMs can have problems with inheritance (the state model can change in derived classes) if state asp

  • Q : Assembly program that reads in five

     I need to write assembly program that reads in five numbers from the user. The user can then be prompted for one of the following pieces of information to be computed and returned: . the mean of the five numbers; . the largest number in the set; . the smallest number in the set; . t

  • Q : Define the term Field Define the term

    Define the term Field: Variables stated within a class or interface, exterior of the methods. The fields are members of a class.

  • Q : Use Finite-State Space Abstractions Use

    Use Finite-State Space Abstractions: In order to successfully apply explicit-state model checking, defects must be detectable in a sufficiently small state space. This can be achieved either by means of heuristics that constrain the way the state spac

  • Q : Explain Operator Explain Operator with

    Explain Operator with their types and examples?

  • Q : Define way of kernel object outlive

    Explain the way of the kernel object outlive the process which created it.