Rectify errors

Report a typo

The HTML code below contains some BEM class naming errors. Your task is to rectify them.

Note: There's no need to add the new words in the class names.

Write HTML and CSS code
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>BEM</title>
</head>
<body>
<header class="header">
<img class="header__logo_">
<form class="header__search-from">
<input class="header--search-from--input" type="input">
<button class="header_search-from___button" type="button"></button>
</form>
</header>
</body>
</html>
Completed 1 of 4
Correct the class name of img tag
Correct the class name of input tag

Create a free account to access the full topic