i downloaded the right solution and it matched my original one several times, but every time i run it i gives me this:
class, interface, or enum expected.
file com/codegym/task/task28/task2810/view/backup.htmlSolution.java, line 1, position 0
class, interface, or enum expected.
file com/codegym/task/task28/task2810/view/vacancies.htmlSolution.java, line 1, position 0
how do i fix it?
<!DOCTYPE html>
<html lang="ru">
<head>
<title>Job Postings</title>
<META http-equiv=Content-Type content="text/html; charset=utf-8"></head>
<body>
<table>
<tr>
<th>Title</th>
<th>City</th>
<th>Company Name</th>
</tr>
<tr class="vacancy">
<td class="title"><a href="https://codegym.cc">Junior Java Developer</a></td>
<td class="city">Entire World</td>
<td class="companyName">CodeGym</td>
</tr>
<tr class="vacancy">
<td class="title"><a href="https://codegym.cc">Junior Java Developer 2</a></td>
<td class="city">Entire World</td>
<td class="companyName">CodeGym</td>
</tr>
<tr class="vacancy template" style="display: none">
<td class="title"><a href="url"></a></td>
<td class="city"></td>
<td class="companyName"></td>
</tr>
</table>
</body>
</html>