<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Контакты - СтройКомплекс</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="wrapper">
<header>
<h1>СК "СтройКомплекс"</h1>
<nav>
<a href="index.html">Главная</a>
<a href="about.html">О нас</a>
<a href="services.html">Услуги</a>
<a href="gallery.html">Галерея</a>
<a href="contact.html">Контакты</a>
</nav>
</header>
<main>
<section>
<h2>Свяжитесь с нами</h2>
<p>Телефон: +7 (999) 000-00-00</p> <p>Адрес: ул. Строителей, 1</p> </section>
<section>
<h2>Написать нам</h2>
<form action="#">
<input type="text" placeholder="Имя" required> <input type="email" placeholder="E-mail" required> <textarea rows="4" placeholder="Сообщение" required></textarea> <button type="submit">Отправить</button> </form>
</section>
</main>
<footer>
<p>© СК "СтройКомплекс"</p>
</footer>
</div>
</body>
</html>