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

Create, test, and validate an HTML document that has a form with the following controls: a....
Create, test, and validate an HTML document that has a form with the following controls: a. A text box to collect the user's name b. Four checkboxes, one for each of the following items: i. Four 25-watt light bulbs for $2.39 ii. Eight 25-watt light bulbs for $4.29 iii. Four 25-watt long-life light bulbs for $3.95 iv. Eight 25-watt long-life light bulbs for $7.49 c. A collection of three radio buttons that are labeled as follows: i. Visa ii. Master...
Create, test, and validate an HTML document that defines a table with columns for state, state...
Create, test, and validate an HTML document that defines a table with columns for state, state bird, state flower, and state tree. There must be at least five rows for states in the table.
Create, test, and validate an HTML document for yourself, including your name, address, and email address....
Create, test, and validate an HTML document for yourself, including your name, address, and email address. If you are a student, you must include your major and your grade level. This document must use several headings and <em>, <strong>, <hr />, <p>, and <br /> tags.
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 List Create a class that holds an ordered list of items. This list should...
Create a List Create a class that holds an ordered list of items. This list should have a variable size, most importantly this class should implement the interface SimpleArrayList. Feel free to add as many other functions and methods as needed to your class to accomplish this task. In other words, you have to write the code for each of the functions specified in the SimpleArrayList interface. You are not allowed to use any 3rd party data structures or libraries...
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>...
FOR HTML Web scripting Complete the following: Create and test an HTML document that has six...
FOR HTML Web scripting Complete the following: Create and test an HTML document that has six short paragraphs of text that describe various aspects of the state in which you live. You must define three different paragraph styles, p1, p2, and p3. The p1 style must use left and right margins of 20 pixels, a background color of pink, and a foreground color of blue. The p2 style must use left and right margins of 30 pixels, a background color...
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!
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT