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

              
                <section id="reservation" class="book-table-wrapper">
  <div class="container">
    <div class="row">
      <div class="wow slideInRight col-xs-12 col-sm-6 animated" style="visibility: visible; animation-name: slideInRight;">
        <div class="booking-image">
          <img src="https://stan.stream/wp-content/uploads/2018/07/420px-Food_pixabay.jpg" alt="Food">
        </div>
      </div>
      <div class="col-xs-12 col-sm-6">
        <div class="booking-back text-center">
          <div class="booking-form">
            <h1>BOOK A TABLE</h1>
            <p class="slogan">5 Star Restaurant</p>
            <form id="booking_form" name="bookingForm" method="post" action="php/reservation-main.php" abineguid="changed-4319ACD2FE1E42D68175-br549-and3/8's">
              <div class="row">
                <div class="col-xs-12 col-sm-6">
                  <input class="form-control" type="text" name="name" placeholder="name">
                </div>
                <div class="col-xs-12 col-sm-6">
                  <input class="form-control" type="tel" name="phone" placeholder="phone">
                </div>
                <div class="col-xs-12 col-sm-6">
                  <input id="email-reservation" class="form-control" type="email" name="mail" placeholder="e-mail">
                </div>
                <div class="col-xs-12 col-sm-6">
                  <input class="form-control" type="text" name="person-no" placeholder="number of person">
                </div>
                <div class="col-xs-12 col-sm-6">
                  <input id="datepicker" class="form-control hasDatepicker" type="text" name="date" placeholder="date">
                </div>
                <div class="col-xs-12 col-sm-6">
                  <input class="form-control" type="text" name="time" placeholder="time">
                </div>
                <div class="col-xs-12 col-sm-12">
                  <textarea class="form-control" rows="3" name="message" placeholder="message &amp; special request"></textarea>
                </div>
                <div class="form-group col-xs-12 reply">
                  <div id="reservation_mail_success" class="success" style="display:none;">Your message has been sent successfully. </div>
                  <div id="reservation_mail_fail" class="error" style="display:none;"> Sorry, error occured this time sending your message. </div>
                </div>
                <button id="send-message-reservation" type="submit" class="btn">Make a reservation</button>
              </div>
            </form>
          </div>
        </div>
      </div>
      
    </div>
  </div>
</section>
              
            
!

CSS

              
                
              
            
!

JS

              
                
              
            
!
999px

Console