--%>

Explain the way to write the opening tag of an XHTML element

Explain the way to write the opening tag of an XHTML element.

E

Expert

Verified

While you are writing an XHTML element, you should start along with its opening tag that contains the name of the element and attributes when required. The opening tag is involved within a pair of angle brackets as: "<" and ">".
XHTML: this element names are predefined through the XHTML specification. You can’t make up any tag names. Now there are some good illustrations of XHTML element opening tags as:

• < html > - It is opening tag of the html element.

• < head > - It is opening tag of the head element.

• < title > - It is opening tag of the title element.

• < body > - It is opening tag of the body element.

• < p > - It is opening tag of the p element.

• < script > - It is opening tag of the script element.

   Related Questions in Programming Languages

  • Q : What is Common Gateway Interface Common

    Common Gateway Interface: The Common Gateway Interface (abbreviated as CGI) is a standard which permits Web clients to interact with programs on Web server. The CGI script is on the server and is able to process arguments or input from a client, and r

  • Q : Abstract list domain The abstract list

    The abstract list domain is as shown: {empty, some, [d1], [d2],[ d1, d2], [d2, d1], all}. A) empty represents empty lists.

    Q : Explain Mutator method Mutator method :

    Mutator method: It is a method specifically designed to permit controlled modification of a private attribute of a class. By convention, we name the mutators with a set prefix obeyed by the name of the attribute being transformed. For example, the mut

  • Q : Describe File system File system : The

    File system: The operating system makes it possible to utilize space on a computer's disk drives by imposing a structured file system on disk storage. Each and every file system contains its own conventions for the manner in which the files are named,

  • Q : Define Delegation Delegation : The

    Delegation: The procedure by which an object passes on a message has received to a sub-ordinate object. When inheritance is not accessible in a programming language, then delegation is the most viable option for ignoring code duplication and promoting

  • 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 : Input and output formatting in C++

    Input output formatting in C++: C++ support

  • Q : Define the term Key value Define the

    Define the term Key value: The object employed to produce an associated hash code for look-up in an associative data structure.

  • Q : How you can develop your capability in

    How you can develop your capability in test?

  • Q : Explain Swing Swing : The Swing classes

    Swing: The Swing classes are portion of a wider collection termed as the Java Foundation Classes (abbreviated as JFC). The swing classes are stated in the javax.swing packages. They give a further set of components which extend the capabilities of Abs