Question

In: Computer Science

This assignment is about using attributes in HTML. The attributes you will use for this assignment...

This assignment is about using attributes in HTML. The attributes you will use for this assignment include the lang attribute, the type attribute, and the start attribute.

For this assignment, you will write an HTML document to create a web page that contains ordered lists with numbers, uppercase letters, lowercase letters, uppercase Roman numerals, and lowercase Roman numerals; and a list with lowercase Roman numerals that starts at a value other than 1.

Your document can be about any topic you would like to write about. For instance, it could be a list of favorite movies or tv shows, favorite foods, etc. You can repeat the same list items for each list (so that you can copy and paste the items without having to re-type them).

Your source code should include:

a DTD

opening and closing html tags

the lang attribute to set the language of the entire document to English

a head section

a title

a body section

a level 1 heading

ordered lists with:

standard numbering

uppercase letters

lowercase letters

uppercase Roman numerals

lowercase Roman numerals

an ordered list with lowercase Roman numerals starting at a value other than 1.

Make sure that your document has all the proper closing tags that go with the opening tags.

Write your source code in a text editor (such as Notepad or TextEdit), and remember to save it with the extension .html or .htm Then open the assignment and upload the file.

Include your last name and the name of the assignment in the filename. Remember to save a copy for yourself, either on your hard drive, or on a flash drive.

Before submitting this assignment, make sure to test your code by opening it in a browser.

Solutions

Expert Solution

<html>
<head>
<title>My favorite cartoons</title></head>
<body>
<h1>
Ordered list with the following
</h1>
<ol type="1">
<li>Tom</li>
<li>Jerry</li>
<li>Ben</li>
<li>Ninja Hatori</li>
</ol>
<ol type="A">
<li>Tom</li>
<li>Jerry</li>
<li>Ben</li>
<li>Ninja Hatori</li>
</ol>
<ol type="a">
<li>Tom</li>
<li>Jerry</li>
<li>Ben</li>
<li>Ninja Hatori</li>
</ol>
<ol type="I">
<li>Tom</li>
<li>Jerry</li>
<li>Ben</li>
<li>Ninja Hatori</li>
</ol>
<ol type="i">
<li>Tom</li>
<li>Jerry</li>
<li>Ben</li>
<li>Ninja Hatori</li>
</ol>
<ol type="i" start="5">
<li>Tom</li>
<li>Jerry</li>
<li>Ben</li>
<li>Ninja Hatori</li>
</ol>

</body>
</html>


Related Solutions

For this assignment, you will write a tic-tac-toe application in HTML and JavaScript, using an HTML...
For this assignment, you will write a tic-tac-toe application in HTML and JavaScript, using an HTML <canvas> tag. The game will be played "hot seat" where players take turns using the same device. Requirements: The canvas should be 600px tall and wide, with the gameplay area occupying most of the canvas. The X's and O's may be drawn using polygons or large-font text The grid should be drawn using polygons, specifically long, thin rectangles Before & between games, the canvas...
For this assignment you need to create a ToDo list using Javascript, along with HTML and...
For this assignment you need to create a ToDo list using Javascript, along with HTML and CSS. Begin by creating a HTML page called todo.html. Then create a Javascript file called todo.js and link it in to the HTML page using a script tag. All Javascript for the assignment must be in the separate file. (For CSS, feel free to include styles in a style block at the top of the HTML page, or to link in CSS from a...
For this assignment you need to create a ToDo list using Javascript, along with HTML and...
For this assignment you need to create a ToDo list using Javascript, along with HTML and CSS. Begin by creating a HTML page called todo.html. Then create a Javascript file called todo.js and link it in to the HTML page using a script tag. All Javascript for the assignment must be in the separate file. (For CSS, feel free to include styles in a style block at the top of the HTML page, or to link in CSS from a...
Using the Quality Attributes Table document provided, complete a page table of quality attributes. Individual Assignment...
Using the Quality Attributes Table document provided, complete a page table of quality attributes. Individual Assignment – Week Four Complete the following table: Attribute Type Categories within the Attribute Type Example from the program Functional attributes <List the categories of attributes of this type (for example “Boolean”)> <Describe an attribute you can measure in your program (for example, user data integrity)> Operational attributes Usability attributes Business attributes Structural attributes
Develop a personal web page for yourself using HTML, CSS, and Javascript Use the following HTML...
Develop a personal web page for yourself using HTML, CSS, and Javascript Use the following HTML tags to design your webpage: <h1>...</h1>,<h3>...</h3>, <h6>...</h6>, <p>...</p>, <b>...</b>, <i>...</i>, <a>...</a>, <img...>, <table>... </table>, <div>...</div>, <form>...</form>, <input type="text">, and <input type= "submit"> Use an external css to change the default style of your webpage. You must use at least one element selector, one id selector, and one class selector Using text input and submit button, allow the user to change the background color of...
Week 4 Assignment HTML – Creating a Simple Web Page “HTML or HyperText Markup Language as...
Week 4 Assignment HTML – Creating a Simple Web Page “HTML or HyperText Markup Language as it is formally known is the main markup language for creating web pages and other information that can be displayed in a webbrowser”. It was created by Tim Berners-Lee in 1989 as a user friendly way of sharing information on the Internet. http://en.wikipedia.org/wiki/HTML Assignment Instructions - Create a simple HTML Web Page that includes hyperlinks to three of your favorite websites. Use the online...
What is the difference between HTML attributes and CSS properties? What are depricted elements and how...
What is the difference between HTML attributes and CSS properties? What are depricted elements and how can we address them? Why would a browser not support certain fonts? 1 paragraph for each plz
NOTE: For this assignment, you will make two HTML pages. First, highlight and copy the following...
NOTE: For this assignment, you will make two HTML pages. First, highlight and copy the following code, paste it into your editor, and save the document as NumberCheck.html. <!doctype html> <html> <head> <meta charset="UTF-8"> <title>Number Check</title> <script type="text/javascript"> /* <![CDATA[ */ function checkTheNumber() { var num = document.getElementById("theNumber").value; var msg = ""; if (num >= 100) msg = msg + "The number is greater than "; msg = msg + "or equal to 100."; alert(msg); } /* ]]> */ </script>...
Using JAVA: This assignment is about aggregation and class collaboration. You will create several Classes that...
Using JAVA: This assignment is about aggregation and class collaboration. You will create several Classes that will be part of an overall class named InstrumentDisplay. The classes are FuelGage, Odometer, MilesSinceLastGas, and CruisingRange. The FuelGage should assume a 15 gallon tank of gasoline and an average consumption of 1 gallon every 28 miles. It should increment in 1 gallon steps when you "add gas to the tank". It should decrement by 1 every 28 miles. It should display its current...
In this assignment you are going to use the menu you created in Assignment 1 to...
In this assignment you are going to use the menu you created in Assignment 1 to test both your Double and Integer classes. You should add functionality to the menu to allow you test the add, sub, mul, div functions for instances of both classes You are going to have make a modification to your menu class. Currently it uses an array to hold a fixed amount of menu items. While this may be OK for most applications we want...
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT