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

              
                <!-- задание2 -->
<!-- Макет № 2 -->
  <div class="wrapper">
    <div class="header">
      <div class="info">
        <h2>www.doski.com</h2>
        <p>Доски с нами - в удовольствие! До 1-го января - скидка 40% на каждую доску!</p>
      </div>
    </div>
    <div class="aside">
      <div class="section">
        <b>Катайтесь с нами</b>
        <p>Sed consequat lobortis tellus quis fringilla. Aenean eleifend sapien quis tellus rhoncus.</p>
        <p>Pellentesque pellentesque sem ac justo tristique pellentesque. Vestibulum semper pulvinar rutrum. Maecenas odio urna, porta sed</p>
        <img src="images/cerf1.jpg" alt="Серфинг">
      </div>
      <div class="section">
        <b>Нет ничего проще!</b>
        <p>Sed consequat lobortis tellus quis fringilla. Aenean eleifend sapien quis tellus rhoncus.</p>
        <p>Pellentesque pellentesque sem ac justo tristique pellentesque. Vestibulum semper pulvinar rutrum. Maecenas odio urna, porta sed</p>
        <img src="images/cerf3.jpg" alt="Серфинг">
      </div>
    </div>
    <div class="content">
      <div class="artical">
        <h2>Катание на досках по воде!</h2>
        <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Suspendisse urna ante, egestas ac nibh sit amet, vehicula posuere quam. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur pretium consequat volutpat. Integer ultricies ligula eget arcu volutpat vehicula. Sed et congue nisi, ac cursus ex. Duis tempus arcu magna, quis auctor odio congue in. Duis nunc leo, tempor nec dignissim sed, euismod vel nibh.</p>
        <p>Sed consequat lobortis tellus quis fringilla. Aenean eleifend sapien quis tellus rhoncus, et elementum justo pulvinar. Vestibulum gravida metus non turpis congue dignissim. Cras vitae urna nibh. Morbi consectetur ex vel cursus bibendum. Nunc dignissim massa non lacus commodo fringilla. Sed id ipsum ac diam fermentum condimentum feugiat a nunc. Nulla tincidunt vel ante non venenatis. Vestibulum fermentum velit et auctor sodales. Sed sagittis metus eget justo lobortis lobortis. Nulla dictum condimentum ipsum, a interdum nibh rutrum a. Nulla sed justo mi. Suspendisse sit amet feugiat magna.</p>
      </div>
      <div class="artical">
        <h2>Приезжайте к нам!</h2>
        <img src="images/cerf1.jpg" alt="Серфинг">
        <p>Nulla eros justo, vulputate ac eros in, semper pharetra ex. Interdum et malesuada fames ac ante ipsum primis in faucibus. Quisque venenatis pellentesque lacus, eget commodo velit. Vivamus porta lobortis elit, fringilla imperdiet leo placerat id. Sed volutpat et tortor id ultricies. Integer efficitur mi id dui porta eleifend. Aliquam aliquet condimentum eros eu euismod. Interdum et malesuada fames ac ante ipsum primis in faucibus. Vivamus euismod accumsan mauris at tincidunt. Etiam euismod vitae elit ut feugiat.</p>
      </div>
      <div class="artical">
        <h2>Всем скидки!</h2>
        <img src="images/cerf2.jpg" alt="Серфинг">
        <p>Pellentesque pellentesque sem ac justo tristique pellentesque. Vestibulum semper pulvinar rutrum. Maecenas odio urna, porta sed lectus eget, fringilla posuere odio. Maecenas pulvinar sed massa vitae tincidunt. Praesent ullamcorper est ac lorem aliquet, sed tempus lacus iaculis. Pellentesque a odio pharetra, sagittis enim sit amet, euismod leo. Nullam egestas, nisi eget blandit dignissim, augue dui accumsan est, at tincidunt ipsum metus quis justo. Aenean sed mauris ornare, faucibus tortor in, iaculis magna. Duis eros lectus, auctor eu mi sit amet, ornare scelerisque elit.</p>
        <p>Integer a sollicitudin quam. Sed laoreet finibus velit ut rhoncus. Nunc euismod neque at ligula venenatis vestibulum. Nulla facilisi. Nunc aliquet, erat sed ullamcorper malesuada, sapien magna tempor augue, at malesuada felis enim at quam. Curabitur ornare tincidunt nisi id cursus. Nunc finibus non massa in vestibulum. Etiam euismod metus ut euismod sagittis. Donec tincidunt neque a dolor posuere egestas. Proin sed dolor dui. In urna tellus, pretium in eleifend eget, pellentesque et enim. Etiam pulvinar velit nec libero iaculis, vitae consectetur elit pellentesque.</p>
      </div>
    </div>
    <div class="footer">
      <p>www.doski.com, 2014-2017. Катайтесь с нами!</p>
    </div>
  </div>
              
            
!

CSS

              
                * {
  margin: 0;
  padding: 0;
}

.wrapper {
  width: 1000px;
  margin: 10px auto;
  display: flex;
  flex-wrap: wrap;
}

.header {
  width: 1000px;
  height: 200px;
  background-image: url(images/cerf2.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  margin-bottom: 30px;
}

.header .info {
  padding-top: 30px;
  color: white;
  font-weight: bold;
  text-shadow: 1px 1px 0 black;
}

.header p {
  text-align: center;
}

.header h2 {
  margin-left: 200px;
}

.aside {
  width: 240px;
  text-align: justify;
  margin: 0 20px;
}

.aside b {
  font-size: 18px;
}

.aside p,
.content p {
  margin-bottom: 10px;
}

.aside img {
  width: 100%;
  height: 100px;
  margin-bottom: 30px;
}

.content {
  width: 700px;
  text-align: justify;
  font-size: 17px;
}

.content img {
  width: 100%;
  height: 300px;
  margin: 15px 0;
}

.footer {
  flex-grow: 1;
  text-align: center;
  padding: 100px 0 0 250px;
}

              
            
!

JS

              
                
              
            
!
999px

Console