Question

In: Computer Science

.Create, test, and validate an XHTML document that describes an ordered list with the following contents:...

.Create, test, and validate an XHTML document that describes an ordered list with the following contents: The highest level should be the names of your parents, with your mother first. Under each parent, you must have a nested, ordered list of the brothers and sisters of your parents, in order by age, eldest first. Each of the nested lists in turn must have nested lists that list the children of your uncles and aunts (your cousins)—under the proper parents, of course. Regardless of how many aunts, uncles, and cousins you actually have, there must be at least three list items in each sublist below each of your parents and below each of your aunts and uncles.

Solutions

Expert Solution

XHTML: Extensible HyperText Markup Language

XHTML is clean and stricter version of HTML. You have to follow all the rules of XHTML.

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">


<head>
        <title>XHTML</title>
</head>
<body>
        <ol>
                <li>
                        Asha Shewale
                        <ol>
                                <li>
                                        Sadashiv Mali
                                        <ol>
                                                <li>Gopal Mali</li>
                                                <li>Jaya Mali</li>
                                                <li>Vaishali Mali</li>
                                        </ol>
                                </li>
                                <li>
                                        Shamrav Mali
                                        <ol>
                                                <li>Golya Mali</li>
                                                <li>Jayesh Mali</li>
                                                <li>Sachin Mali</li>
                                        </ol>
                                </li>
                                <li>
                                        Sanju Mali
                                        <ol>
                                                <li>Pari Mali</li>
                                                <li>Shubham Mali</li>
                                                <li>Pratik Mali</li>
                                        </ol>
                                </li>
                        </ol>
                </li>
                <li>
                        Rajendra Shewale
                        <ol>
                                <li>
                                        Nana Shewale
                                        <ol>
                                                <li>Mahesh Shewale</li>
                                                <li>Kiran Shewale</li>
                                                <li>Chaya Shewale</li>
                                        </ol>
                                </li>
                                <li>
                                        Tai Shewale
                                        <ol>
                                                <li>Jayesh Shewale</li>
                                                <li>Rahul Shewale</li>
                                                <li>Nitin Shewale</li>
                                        </ol>
                                </li>
                                <li>
                                        Pintu Shewale
                                        <ol>
                                                <li>Varsha Shewale</li>
                                                <li>Rohan Shewale</li>
                                                <li>Pritesh Shewale</li>
                                        </ol>
                                </li>
                        </ol>
                </li>
        </ol>
</body>
</html>

Output :

XHTML validation:


Related Solutions

Assignment: The Ordered List In this assignment, you will create an ordered list of movies. The...
Assignment: The Ordered List In this assignment, you will create an ordered list of movies. The list will always be maintained in sorted order (ascending order, by movie title) by assuring that all new movies are inserted in the correct location in the list. Create a new project to hold your implementation of an ordered singly-linked list. You will need a main.cppto use as a test driver, as well as header and implementation files as described below. Movie To represent...
Create a XSD Schema to validate and provide structure for the XML document below: <?xml version="1.0"...
Create a XSD Schema to validate and provide structure for the XML document below: <?xml version="1.0" encoding="UTF-8" ?> <forecast qTime="28/10/20 10:00 PM" qLocation="Singapore"> <weather yyyymmdd="20200430"> <year>2020</year>   <month>04</month> <date>30</date> <comment>Plenty of sunshine</comment> <code>sunny</code> <highest>32.6</highest> <lowest>28.4</lowest> </weather> <weather yyyymmdd="20200218"> <year>2020</year>   <month>02</month> <date>18</date> <comment>Plenty of sunshine</comment> <code>sunny</code> <highest>34.6</highest> <lowest>30.5</lowest> </weather> <weather yyyymmdd="20200710"> <year>2020</year>   <month>07</month> <date>10</date> <comment>Partly sunny</comment> <code>partlySunny</code> <highest>33.1</highest> <lowest>29.2</lowest> </weather> <weather yyyymmdd="20200616"> <year>2020</year>   <month>06</month> <date>16</date> <comment>Considerable clouds</comment> <code>cloudy</code> <highest>30.5</highest> <lowest>25.4</lowest> </weather> <weather yyyymmdd="20200612"> <year>2020</year>   <month>06</month> <date>12</date> <comment>Cloudy with a thunderstorm</comment> <code>thunderstorm</code> <highest>29.1</highest>...
Create a short Word document, no longer than a page, that describes “How the Internet Works.”
Create a short Word document, no longer than a page, that describes “How the Internet Works.” This can be from any perspective you wish, browser, email, networking but will probably have to cover a few of these ideas. You will receive 3 points for each keyword and although I encourage you to use more than 5, the maximum number of points you can receive is 15.Terms (Remember, you need to use at least 5 to get full credit)Public IP address             ...
The project scope defines and describes what needs to be done during the course of the project. Identify and describe the contents and sections of a project scope document.
The project scope defines and describes what needs to be done during the course of the project. Identify and describe the contents and sections of a project scope document.  
Create an ordered list of the tests you will perform on your unknown to identify its...
Create an ordered list of the tests you will perform on your unknown to identify its cation(Ba^{+2}, Pb^{+2}, Zn^{+2}) and anion(CO_3^{-2},SO_{4}^{-2}, PO_{4}^{-2},SCN^-, Cl^-, NO_3^-). The procedure for each test should be briefly described, along with what a positive and negative result looks like. Assume that each test returns a negative result, except for the last cation and anion test, so that you have to perform all of the tests. Please help! Thank you!
Which of the following describes a document sent to verify an organization’s identity to the CA?
Which of the following describes a document sent to verify an organization’s identity to the CA?Digital trust application formPKI escrow formTrusted Site Application formCertificate-signing request
create a document in microsoft word or excel document which has the following: Fictitious names and...
create a document in microsoft word or excel document which has the following: Fictitious names and addresses of 10 folks including name, address and phone number. Recreate the bike table, which includes bike name, part number and hourly rate Please limit your submission to no more than 2 pages.
First, create a project that creates an ordered linked list class (use the code provided, make...
First, create a project that creates an ordered linked list class (use the code provided, make sure to update the insert function so that it maintains an ordered list). To this class, add a function that prints the list in REVERSE order. Making use of recursion is the easiest and best way to do this, but certainly not the only way. Submit a .zip of your entire project.
Which of the following accurately describes a hypothesis test
Which of the following accurately describes a hypothesis test
Prepare a document that addresses the following: Describes the different phases of the traditional systems development...
Prepare a document that addresses the following: Describes the different phases of the traditional systems development life cycle (SDLC) Compares the SDLC waterfall method to the spiral and agile methods. Explains how these methods are similar and how they are different. You may submit your paper in essay form or you may choose to use a table that highlights the different phases of the SDLC and compares it to spiral and agile methods.
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT