--%>

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 : Define Byte Byte : In general

    Byte: In general computing, it refers to eight bits of data. In Java it is as well the name of one of the primitive data types, whose size is of eight bits.

  • Q : What is Priority level Priority level :

    Priority level: Each and every thread has a priority level that point out to the scheduler where it must be placed in the pecking order for being run. The eligible un-blocked thread with a specific priority will always be run prior to an eligible thre

  • Q : Acknowledge inside a transaction Normal

    Normal 0 false false

  • Q : Define CORBA Define CORBA ? What does

    Define CORBA? What does it do?

  • Q : Explain Inheritance hierarchy

    Inheritance hierarchy: The relationship among super-classes and sub-classes is termed as an inheritance hierarchy. The single inheritance of classes means that each and every class has simply a single `parent' class and that Object class is the eventu

  • Q : Define the term Manifest file Define

    Define the term Manifest file: It is a file which is held in a Java Archive (JAR) file, explaining the contents of the archive.

  • Q : Explain Method overloading Method

    Method overloading: Two or more techniques with similar name stated within a class are said to be overloaded. This exerts to both constructors and other methods. The overloading applies via a class hierarchy, thus a sub class may overload a method sta

  • Q : Define Double buffering Double

    Double buffering: A graphics method employed to smooth animation. The later version of an image is drawn `at the back the scenes' and then exhibited in its totality whenever the drawing is finished. The supposition is that it will be relatively fast t

  • Q : Define Class scope Class scope :

    Class scope: Private variables stated outside the methods in a class contain class scope. They are available from all methods within a class, in spite of the order in which they are stated. The private methods too contain class scope. Variables and me

  • Q : Homework Assignment How much would it

    How much would it cost to do a basic program within the given requirements?