Загрузка данных


<!DOCTYPE html>
<html lang="ru">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <style>
        body {
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 0;
            background-color: #fff;
        }
        
        .header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 10px 20px;
            background-color: #fcfcfc;
            border-bottom: 1px solid #ddd;
        }
        
        .logo {
            width: 150px;
            height: auto;
            float: left;
        }
        
        nav ul {
            list-style-type: none;
            padding: 0;
            margin: 0;
            display: flex;
        }
        
        nav li {
            margin-right: 20px;
        }
        
        nav a {
            text-decoration: none;
            color: black;
            font-weight: bold;
        }
        
        .contact-info {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .hero-section {
            position: relative;
            text-align: center;
            padding-top: 100px;
            min-height: 50vh;
            background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('granite_bg.jpg');
            background-size: cover;
            background-position: center;
            color: white;
        }
        
        .hero-text {
            font-size: 3em;
            line-height: 1.2;
            z-index: 1;
            position: relative;
        }
        
        .button {
            background-color: #ffcc00;
            color: white;
            padding: 10px 20px;
            border-radius: 5px;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }
        
        .button:hover {
            background-color: #ffdd00;
        }
        
        footer {
            background-color: #fcfcfc;
            padding: 20px;
            text-align: center;
            font-weight: bold;
        }
    </style>
    <title>Челябинский завод каменной штукатурки</title>
</head>
<body>
    
    <!-- Header -->
    <div class="header">
        <img src="logo.png" alt="Логотип" class="logo">
        <nav>
            <ul>
                <li><a href="#">ГРАНИТ</a></li>
                <li><a href="#">ПРОДУКЦИЯ</a></li>
                <li><a href="#">О ЗАВОДЕ</a></li>
                <li><a href="#">ПРАВООБЩНИК</a></li>
                <li><a href="#">НАШИ ДИРЕКТОРЫ</a></li>
                <li><a href="#">КОНТАКТЫ</a></li>
            </ul>
        </nav>
        <div class="contact-info">
            <p>г. Челябинск, ул. Тюменская, оф. 1</p>
            <p>+7 (351) 394-12-24</p>
            <p>+7 (968) 122-02-20</p>
        </div>
    </div>
    
    <!-- Hero Section -->
    <section class="hero-section">
        <div class="hero-text">
            <h1>ИЗГОТОВЛЕНИЕ ИЗДЕЛИЙ<br>ИЗ ГРАНИТА ОТ ПРОИЗВОДИТЕЛЕЙ</h1>
            <button class="button">ПОДРОБНЕЕ</button>
        </div>
    </section>
    
    <!-- Footer -->
    <footer>
        НАШИ ИЗДЕЛИЯ
    </footer>

</body>
</html>