HTML errors to find - answers
HTML errors to find - answers
<!DOCTYPE html>
<html lang="en">
<head>
</head>
<body>
<h3>This is heading 3</h3 <!-- Missing closing angle bracket for h3 -->
<p title=I'm a tooltip>This is a paragraph.</p> <!-- Missing quotes around title attribute -->
<img src="img_girl.jpg">
Вариант 2
<!DOCTYPE html>
<html lang="en">
<head>
<title>My first site<title> <!-- Missing closing slash on title tag -->
</head>
<body>
<p title="I'm a tooltip>This is a paragraph.</p> <!-- Unclosed title attribute quote -->
<img src="img_girl.jpg"
<img src="img_boy.jpg" width=500 height=600> <!-- Missing quotation marks around width and height attributes -->
<p style="color: red>This is a red paragraph.</p> <!-- Unclosed color style quote -->
</body>
</html>
Вариант 3
<!DOCTYPE html>
<html lang="en">
</head>
<body>
<p title="I'm a tooltip>This is a paragraph.</p> <!-- Unclosed title attribute quote -->
<img src="img_girl.jpg">
<p style="color:red>This is a red paragraph.</p> <!-- Missing closing quote for color -->
</body>
</html>
Вариант 4
<head>
</head>
<body>
</body>
<!DOCTYPE html>
<head>
</head>
</body>
</html>
Вариант 6
<!DOCTYPE html>
<html lang="en">
<head>
<title>My first site<title> <!-- Missing closing slash on title tag -->
</head>
<body>
<p title="I'm a tooltip>This is a paragraph.</p> <!-- Unclosed title attribute quote -->
<p style="color: red>This is a red paragraph.</p> <!-- Unclosed color style quote -->
</body>
<head>
</head>
<body>
</body>
</html>
Вариант 8
<head>
<body>
<img src="img_girl.jpg">
</html>