Pen Settings

HTML

CSS

CSS Base

Vendor Prefixing

Add External Stylesheets/Pens

Any URLs added here will be added as <link>s in order, and before the CSS in the editor. You can use the CSS from another Pen by using its URL and the proper URL extension.

+ add another resource

JavaScript

Babel includes JSX processing.

Add External Scripts/Pens

Any URL's added here will be added as <script>s in order, and run before the JavaScript in the editor. You can use the URL of any other Pen and it will include the JavaScript from that Pen.

+ add another resource

Packages

Add Packages

Search for and use JavaScript packages from npm here. By selecting a package, an import statement will be added to the top of the JavaScript editor for this package.

Behavior

Auto Save

If active, Pens will autosave every 30 seconds after being saved once.

Auto-Updating Preview

If enabled, the preview panel updates automatically as you code. If disabled, use the "Run" button to update.

Format on Save

If enabled, your code will be formatted when you actively save your Pen. Note: your code becomes un-folded during formatting.

Editor Settings

Code Indentation

Want to change your Syntax Highlighting theme, Fonts and more?

Visit your global Editor Settings.

HTML

              
                <!-- Header -->
<header class="header">
    <nav class="nav">
        <a class="nav-item" href="#">Главная</a>
        <a class="nav-item" href="#">О нас</a>
        <a class="nav-item" href="#">Услуги</a>
        <a class="nav-item" href="#">Контакты</a>
    </nav>
</header>


<!-- Content -->
<div class="content">
    <main class="main">
        <section class="section">
            <h1>Кто мы такие?</h1>
            <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Perspiciatis soluta praesentium nobis vel, porro saepe repudiandae earum? Doloribus cumque expedita, alias. Sit impedit quam mollitia totam, porro voluptatibus tempora consequatur?</p>
        </section>


        <section class="section">
            <h2>Наши услуги</h2>
            <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Perspiciatis soluta praesentium nobis vel, porro saepe repudiandae earum? Doloribus cumque expedita, alias. Sit impedit quam mollitia totam, porro voluptatibus tempora consequatur?</p>
        </section>


        <section class="section">
            <h2>Полезные статьи</h2>
            <article class="article">
                <h4>Название статьи</h4>
                <time class="date" datetime="2020-11-31">Опубликовано: 31.11.2020</time>
                <div class="article-text">
                    <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Nisi in ea rerum, sequi reprehenderit fugiat, dignissimos officiis, consectetur dolore sunt totam ullam. At voluptates ex nobis. Quod sint, vitae possimus.</p>
                </div>
            </article>

            <article class="article">
                <h4>Название статьи</h4>
                <time class="date" datetime="2020-11-31">Опубликовано: 31.11.2020</time>
                <div class="article-text">
                    <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Nisi in ea rerum, sequi reprehenderit fugiat, dignissimos officiis, consectetur dolore sunt totam ullam. At voluptates ex nobis. Quod sint, vitae possimus.</p>
                </div>
            </article>
        </section>
    </main><!-- /.main -->


    <aside class="sidebar">
        <h4>Наши партнеры</h4>
        <p><img src="img/some-img.jpg" alt=""></p>
        <p><img src="img/some-img.jpg" alt=""></p>
        <p><img src="img/some-img.jpg" alt=""></p>
    </aside>
</div><!-- /.content -->



<!-- Footer -->
<footer class="footer">
    <h3>Наши контакты</h3>
    <address>
        <p>Адрес: Улица 23, дом 3, город</p>
        <p>Телефон: 22336644544</p>
        <p>Е-майл: hello@website.ru</p>
    <address>
</footer>
              
            
!

CSS

              
                
              
            
!

JS

              
                
              
            
!
999px

Console