Files
PIbd-22_Ashahanov_A.I._Inte…/LabWork01/services.html
Samecoins 14f97486b2 2
2025-05-24 00:09:55 +04:00

55 lines
1.7 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Услуги — Арсенал Времени</title>
<link rel="stylesheet" href="css/style.css" />
</head>
<body>
<header>
<div class="logo">Арсенал Времени</div>
<button class="menu-toggle">&#9776;</button>
<nav class="navbar">
<a href="index.html">Главная</a>
<a href="catalog.html">Каталог</a>
<a href="stories.html">Истории</a>
<a href="services.html">Услуги</a>
<a href="contacts.html">Контакты</a>
</nav>
</header>
<main class="content">
<h2>Наши услуги</h2>
<ul>
<li>Оценка подержанного оружия</li>
<li>Скупка редких образцов</li>
<li>Реставрация и консервация</li>
<li>Сертификация и оформление документов</li>
</ul>
</main>
<footer>
<div class="footer-section">
<h3>Контакты</h3>
<p>г. Москва, ул. Ретрооружейная, д. 7</p>
<p>+7 (495) 123-45-67</p>
</div>
<div class="footer-section">
<h3>Мы в соцсетях</h3>
<div class="social-icons">
<img src="img/vk.png" alt="VK" />
<img src="img/youtube.png" alt="YouTube" />
<img src="img/telegram.png" alt="Telegram" />
</div>
</div>
</footer>
<script>
document.querySelector('.menu-toggle').addEventListener('click', function () {
document.querySelector('.navbar').classList.toggle('active');
});
</script>
</body>
</html>