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 mt-5">
    <div class="row">


      <div class="col-lg-4 col-md-6 mb-3">
        <div class="card py-4 px-lg-5 h-100">
          <div class="card-body d-flex flex-column">
            <div class="text-center">
              <img src="https://drive.google.com/uc?export=view&id=1HswgEjS9kRoAKUDOMmDhnhUyyah7wBW9" class="img-fluid  mb-5" alt="Websearch">
            </div>

            <div class="card-title mb-4 text-center fs-2">Personal Package</div>
            <div class="pricing">
              <ul class="list-unstyled">
                <li class="mb-3">
                  <i class="fas fa-check-circle icon-color"></i>
                  <span class="small ms-3">1 Member Only</span>
                </li>
                <li class="mb-3">
                  <i class="fas fa-check-circle icon-color"></i>
                  <span class="small ms-3">Available Storage 100GB</span>
                </li>
              </ul>


            </div>
            <div class="text-center mt-auto mb-4">
              <span class="fw-bold fs-2 ">$7</span>/month
            </div>
            <div class="text-center"><button type="button" class="btn btncolor">Choose Plan</button></div>

          </div>
        </div>

      </div>


      <div class="col-lg-4 col-md-6 mb-3">
        <div class="card py-4 px-lg-5 h-100">
          <div class="card-body d-flex flex-column">
            <div class="text-center">
              <img src="https://drive.google.com/uc?export=view&id=1HswgEjS9kRoAKUDOMmDhnhUyyah7wBW9" class="img-fluid  mb-5" alt="Websearch">
            </div>

            <div class="card-title mb-4 text-center fs-2">Partner Package</div>
            <div class="pricing">
              <ul class="list-unstyled">
                <li class="mb-3">
                  <i class="fas fa-check-circle icon-color"></i>
                  <span class="small ms-3">2-3 Members</span>
                </li>
                <li class="mb-3">
                  <i class="fas fa-check-circle icon-color"></i>
                  <span class="small ms-3">Available Storage 500GB</span>
                </li>
                <li class="mb-3">
                  <i class="fas fa-check-circle icon-color"></i>
                  <span class="small ms-3">Free Hosting</span>
                </li>
              </ul>


            </div>
            <div class="text-center mt-auto mb-4">
              <span class="fw-bold fs-2 ">$11</span>/month
            </div>
            <div class="text-center"><button type="button" class="btn btncolor">Choose Plan</button></div>

          </div>
        </div>
      </div>

      <div class="col-lg-4 col-md-6 mb-3">
        <div class="card py-4 px-lg-5 h-100">
          <div class="card-body d-flex flex-column">
            <div class="text-center">
              <img src="https://drive.google.com/uc?export=view&id=1HswgEjS9kRoAKUDOMmDhnhUyyah7wBW9" class="img-fluid  mb-5" alt="Websearch">
            </div>

            <div class="card-title mb-4 text-center fs-2">Team Package</div>
            <div class="pricing">
              <ul class="list-unstyled">
                <li class="mb-3">
                  <i class="fas fa-check-circle icon-color"></i>
                  <span class="small ms-3">4-7 Members</span>
                </li>
                <li class="mb-3">
                  <i class="fas fa-check-circle icon-color"></i>
                  <span class="small ms-3">Available Storage 2TB</span>
                </li>
                <li class="mb-3">
                  <i class="fas fa-check-circle icon-color"></i>
                  <span class="small ms-3">Free Hosting</span>
                </li>
                <li class="mb-3">
                  <i class="fas fa-check-circle icon-color"></i>
                  <span class="small ms-3">Free Domains</span>
                </li>
              </ul>


            </div>
            <div class="text-center mt-auto mb-4">
              <span class="fw-bold fs-2 ">$15</span>/month
            </div>
            <div class="text-center"><button type="button" class="btn btncolor">Choose Plan</button></div>

          </div>
        </div>
      </div>


    </div>
  </div>
              
            
!

CSS

              
                body{
  background-color:#6940ff;
}


.btncolor{
  background-color: #b923ff;
  border-radius: 55555px;
  padding: 1rem 2rem!important;
  color: #ffff;
  margin-bottom: 2rem;
  
}


.package{
  list-style-type: none;
}

.pricing{
 padding-left: 1.5rem;
}

.parent{
  height: 300px;
  display: flex;
  border:2px solid yellow;
}

.child{
  background-color: red;
  margin-bottom: auto;
  margin-left: auto;
  margin-right: auto;
  color: white;
}

.icon-color
{
  color:#1f38fa;

}
              
            
!

JS

              
                // https://drive.google.com/uc?export=view&id=1HswgEjS9kRoAKUDOMmDhnhUyyah7wBW9"
              
            
!
999px

Console