Write an HTML document to create a web page that contains an unordered list, an
ID: 3794819 • Letter: W
Question
Write an HTML document to create a web page that contains an unordered list, an ordered list, headings, and comments.
Your document can be about any topic you would like to write about. Some suggestions for topics include recipes; lists of favorite movies or favorite foods; to-do lists; etc. The document should be coherent and logical.
Your source code should include:
a DTD
opening and closing html tags
a head section
a title
a body section
a level 1 heading
at least one paragraph
level 2 headings
an unordered list
an ordered list
a single-line comment
a multi-line comment
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.
Explanation / Answer
Home.html page
<html>
<head><title>home</title></head>
<body bgcolor="#FFAAFFAA">
<h1>HTML Introduction</h1>
<p>HyperText Markup Language (HTML) is the standard markup language for
creating web pages and web applications. With Cascading Style Sheets (CSS),
and JavaScript, it forms a triad of cornerstone technologies for the World Wide Web.[1]
Web browsers receive HTML documents from a webserver or from local storage and render them into multimedia web pages.
HTML describes the structure of a web page semantically
and originally included cues for the appearance of the document.</p>
<h2>Various Tags</h2>
<ul>
<li>Heading Tags</li>
<ol>
<li>h1 tag </li>
<li>h2 tag </li>
<li>h3 tag </li>
<li>h4 tag </li>
<li>h5 tag </li>
<li>h6 tag </li>
</ol>
<li>Paragraph tag</li>
<li>image tag</li>
<li>link tag</li>
<li>Table Tags</li>
<ol>
<li>th for table heading</li>
<li>tr for table row</li>
<li>td for table data</td>
</ol>
<li>Etc.</li>
</ul>
<!----Single line comments in html--->
<!----In the same form
can be use multiple line
comments in html--->
</body>
</html>
Simple DTD :-
Related Questions
drjack9650@gmail.com
Navigate
Integrity-first tutoring: explanations and feedback only — we do not complete graded work. Learn more.