<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" type="text/css" href="style.css">
<title>Service-Pro</title>
<script src="script.js"></script>
</head>
<body>
<header>
<div class="header_logo"><p>Service-Prosts</p></div>
<nav>
<div class="topnav" id="myTopnav">
<a href="#">НАЧАЛО</a>
<a href="#">УСЛУГИ</a>
<a href="#">О НАС</a>
<a href="#">ВОПРОС-ОТВЕТ</a>
<a href="#">ФОРМА</a>
<a href="#" id="menu" class="icon">☰</a>
</div>
</nav>
</header>
</body>
</html>
menu.oneclick = function myFunction() {
var x = document.getElementById('myTopnav');
if (x.className === "topnav") {
x.className += " responsive";
} else {
x.className = "topnav";
}
}