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

              
                <!DOCTYPE html>
<html>
  <head>
    <title>Bulma CSS</title>

    <!--Bulma CDN-->
    <link
      rel="stylesheet"
      href="https://cdn.jsdelivr.net/npm/bulma@0.9.3/css/bulma.min.css"
    />
  </head>
  <body>
    <header class="hero is-custom">
      <div class="hero-body">
        <div class="container">
          <div class="columns">
            <div class="column is-one-quarter">
              <img
                src="https://user-images.githubusercontent.com/69134468/235296390-11fdb2a0-2909-4ac1-af00-7def636965e1.png"
                alt="Your logo"
                class="image is-64x64"
              />
            </div>
            <div class="column">
              <h1 class="title is-3">Buy our Products</h1>
            </div>
          </div>
        </div>
      </div>
    </header>
    <div class="columns is-multiline">
      <!-- Product 1 -->
      <div class="column">
        <div class="card is-one-quarter has-background-grey-light ml-2 mt-2">
          <div class="card-image">
            <figure class="image is-4by3">
              <img src="https://user-images.githubusercontent.com/69134468/235297320-094a5a83-eb06-4933-acf5-735081d22557.png" alt="Product 1" />
            </figure>
          </div>
          <div class="card-content">
            <p class="title is-4">Automated Browser Screenshot Testing</p>
            <p class="subtitle is-6">Free</p>
            <div class="content">
              <p>
                Take Instant Automated Screenshots Across Multiple Browsers In A Single Click.
              </p>
            </div>
          </div>
        </div>
      </div>

      <!-- Product 2 -->
      <div class="column">
        <div class="card is-one-quarter has-background-grey-light mt-2">
          <div class="card-image">
            <figure class="image is-4by3">
              <img src="https://user-images.githubusercontent.com/69134468/235297322-d7ca1ae4-7abd-41ce-adc5-ec3db2b134f0.png" alt="Product 2" />
            </figure>
          </div>
          <div class="card-content">
            <p class="title is-4">LT Browser 2.0</p>
            <p class="subtitle is-6">Free</p>
            <div class="content">
              <p>
                Next-gen browser to build, test & debug
mobile websites.
              </p>
            </div>
          </div>
        </div>
      </div>

      <!-- Product 3 -->
      <div class="column">
        <div class="card is-one-quarter has-background-grey-light mt-2">
          <div class="card-image">
            <figure class="image is-4by3">
              <img src="https://user-images.githubusercontent.com/69134468/235297323-b72aa7db-0e28-41fc-9cb4-3597de62557f.png" alt="Product 3" />
            </figure>
          </div>
          <div class="card-content">
            <p class="title is-4">LT Debug</p>
            <p class="subtitle is-6">Free</p>
            <div class="content">
              <p>
Debug web pages on-the-fly with nine essential debugging tools. This Chrome extension makes debugging any web page a breeze.
              </p>
            </div>
          </div>
        </div>
      </div>

      <!-- Product 4 -->
      <div class="column">
        <div class="card is-one-quarter has-background-grey-light mr-2 mt-2">
          <div class="card-image">
            <figure class="image is-4by3">
              <img src="https://user-images.githubusercontent.com/69134468/235297327-187e03a5-81c2-4657-851e-55efc10b569a.png" alt="Product 4" />
            </figure>
          </div>
          <div class="card-content">
            <p class="title is-4">AI-Powered Test Analytics</p>
            <p class="subtitle is-6">Free</p>
            <div class="content">
              <p>
                Assess high-impact quality issues with detailed Test Analytics & Observability Suite.
              </p>
            </div>
          </div>
        </div>
      </div>
    </div>
  </body>
</html>
              
            
!

CSS

              
                .hero.is-custom {
  background-color: #0ebac5;
}
              
            
!

JS

              
                
              
            
!
999px

Console