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

              
                <div class="container">
  <h1 class="mb-4">Professions</h1>
  <div class="row">
    <div class="col">
      <table>
        <thead>
          <tr>
            <th>№</th>
            <th>Name of profession</th>
            <th>Description</th>
          </tr>
        </thead>
        <tbody>
          <tr>
            <td>1</td>
            <td>Frontend Programmer</td>
            <td>JavaScript is a programming language for frontend development. It is used by programmers to make websites dynamic and "live". The most in-demand and easiest language for beginners.</td>
          </tr>
          <tr>
            <td>2</td>
            <td>PHP Programmer</td>
            <td>PHP is a server-side programming language. It is designed specifically for backend development. PHP is easier for beginners than most other server-side languages. Slack, Wikipedia, VKontakte use PHP.</td>
          </tr>
          <tr>
            <td>3</td>
            <td>Java Programmer</td>
            <td>Java is a universal programming language. Works on any architecture and can be embedded in web applications. Widely used in development of desktop, web and mobile applications, in banking, scientific and industrial fields.</td>
          </tr>
          <tr>
            <td>4</td>
            <td>Python Programmer</td>
            <td>Python is one of the most popular programming languages. It is used to develop artificial intelligence, websites, and games. This language is both popular and easy for beginners. It is not for nothing that Python is used by Google, Yandex, and Dropbox.</td>
          </tr>
          <tr>
            <td>5</td>
            <td>Node.js programmer</td>
            <td>Node.js has extended JavaScript and made it a server-side programming language. It helps frontend efficiently interact with the database. Netflix, Uber, eBay use Node.js on their platforms.</td>
          </tr>
          <tr>
            <td>6</td>
            <td>Webmaster</td>
            <td>In this profession, you will learn how to layout pages using HTML and CSS, and how to adapt websites for different screens. During the course, you will learn Sass, Flexbox, Bootstrap, and other tools and technologies.
            </td>
          </tr>
        </tbody>
      </table>
    </div>
  </div>
</div>
              
            
!

CSS

              
                
              
            
!

JS

              
                
              
            
!
999px

Console