Yahoo Answers is shutting down on May 4th, 2021 (Eastern Time) and beginning April 20th, 2021 (Eastern Time) the Yahoo Answers website will be in read-only mode. There will be no changes to other Yahoo properties or services, or your Yahoo account. You can find more information about the Yahoo Answers shutdown and how to download your data on this help page.
Trending News
You may find more than one error in the code, you need to identify & list the six errors in this code?
<html>
<head>
<title>Error in Code Sample</titel>
<head>
<body background="red">
<h1><font color=blue>Errors, Errors, and More Errors</h1>
<hr>
<font face="verdana" color="yellow>Help Me!!!!</font>
</body>
3 Answers
- Anonymous1 decade agoFavorite Answer
This is the third homework question you've posted tonight.
Please stop.
However, I'll give you some more errors - at least problems.
There's no doctype identified. Modern web pages really should have a doctype. Without one, it will fall to a generic HTML 4 specification, which provides no guarantees of anything.
The font tag is no longer considered a good idea. Fonts should be specified through CSS, not through HTML directly.
When you specify a particular font like "verdana" you should also include a generic font name like 'sans-serif.' That way, browsers that do not have access to verdana will still know what font to use.
The <hr> tag is deprecated. Use of the CSS border attribute is much more flexible.
If you do use <hr> you should indicate it's a single tag, like this: <hr />
Next time I see you posting a homework question here, I encourage everyone to give fake answers.
If you're really having a problem somewhere, ask away. We love to help. But we're not going to do your homework for you.
Source(s): HTML / XHTML / CSS All in One for Dummies (author) http://www.aharrisbooks.net/xfd - 1 decade ago
1) </titel> should be </title>
2) second <head> should be </head>
3) <body background="red"> should be <body bgcolor="red">
4) Errors</h1> should be Errors</font></h1>
5) color="yellow should be color="yellow"
6) missing </html> at the end
- 1 decade ago
Jim had it bang on.
If you get a bonus for getting more errors, the "<font color=blue>" should be "<font color="blue">"