Sample Page

<!DOCTYPE html>
<html lang="ru">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Аутсорсинговая бухгалтерия</title>
    <style>
        body { font-family: 'Arial', sans-serif; margin: 0; padding: 0; background: #F4F7F9; color: #333; }
        header { background: #2C3E50; color: white; text-align: center; padding: 40px 20px; }
        nav { background: #34495E; padding: 15px; text-align: center; }
        nav a { color: white; margin: 0 15px; text-decoration: none; font-weight: bold; transition: color 0.3s; }
        nav a:hover { color: #F39C12; }
        .container { padding: 40px 20px; max-width: 1200px; margin: auto; }
        h2 { color: #2C3E50; }
        .services { display: flex; flex-wrap: wrap; gap: 20px; justify-content: center; }
        .service { background: white; padding: 20px; flex: 1; min-width: 300px; text-align: center; border-radius: 10px; 
                  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); transition: transform 0.3s, box-shadow 0.3s; }
        .service:hover { transform: translateY(-5px); box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15); }
        .service h3 { color: #34495E; }
        footer { background: #2C3E50; color: white; text-align: center; padding: 20px; margin-top: 40px; }
        .button { display: inline-block; padding: 10px 20px; margin-top: 10px; background: #F39C12; color: white;
                  text-decoration: none; border-radius: 5px; font-weight: bold; transition: background 0.3s; }
        .button:hover { background: #E67E22; }
    </style>
</head>
<body>
    <header>
        <h1>Аутсорсинговая бухгалтерия</h1>
        <p>Профессиональные бухгалтерские услуги для вашего бизнеса</p>
    </header>
    <nav>
        <a href="#about">О нас</a>
        <a href="#services">Услуги</a>
        <a href="#contact">Контакты</a>
    </nav>
    <div class="container">
        <section id="about">
            <h2>О нас</h2>
            <p>Мы предоставляем надежные бухгалтерские услуги, чтобы ваш бизнес мог сосредоточиться на росте.</p>
        </section>
        <section id="services">
            <h2>Наши услуги</h2>
            <div class="services">
                <div class="service">
                    <h3>Ведение бухгалтерии</h3>
                    <p>Комплексное ведение бухгалтерского учета для вашего бизнеса.</p>
                    <a href="#contact" class="button">Заказать</a>
                </div>
                <div class="service">
                    <h3>Налоговый учет</h3>
                    <p>Оптимизация налогообложения и своевременная отчетность.</p>
                    <a href="#contact" class="button">Заказать</a>
                </div>
                <div class="service">
                    <h3>Консультации</h3>
                    <p>Экспертные консультации по вопросам бухгалтерии и налогов.</p>
                    <a href="#contact" class="button">Заказать</a>
                </div>
            </div>
        </section>
        <section id="contact">
            <h2>Контакты</h2>
            <p>Свяжитесь с нами по телефону: +7 (900) 123-45-67</p>
            <p>Email: info@buhoutsourcing.ru</p>
        </section>
    </div>
    <footer>
        <p>&copy; 2025 Аутсорсинговая бухгалтерия. Все права защищены.</p>
    </footer>
</body>
</html>

This is an example page. It’s different from a blog post because it will stay in one place and will show up in your site navigation (in most themes). Most people start with an About page that introduces them to potential site visitors. It might say something like this:

Hi there! I’m a bike messenger by day, aspiring actor by night, and this is my website. I live in Los Angeles, have a great dog named Jack, and I like piña coladas. (And gettin’ caught in the rain.)

…or something like this:

The XYZ Doohickey Company was founded in 1971, and has been providing quality doohickeys to the public ever since. Located in Gotham City, XYZ employs over 2,000 people and does all kinds of awesome things for the Gotham community.

As a new WordPress user, you should go to your dashboard to delete this page and create new pages for your content. Have fun!

Пролистать наверх