bootstrap Archives - csshint - A designer hub https://csshint.com/category/bootstrap/ Sun, 30 Jul 2023 17:57:46 +0000 en-US hourly 1 https://wordpress.org/?v=6.3.4 Bootstrap 5 – Responsive Login Form https://csshint.com/bootstrap-5-responsive-login-form/ Sun, 30 Jul 2023 17:56:52 +0000 https://csshint.com/?p=8442 How to create Responsive Login Form using Bootstrap 5. Designed by Meb Zone a codepen user. See the Pen Bootstrap 5 – Responsive Login Form by Web Zone (@skcals) on CodePen. HTML <html lang="en"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <title>Bootstrap 5 - Login Form</title> <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.0-beta1/dist/css/bootstrap.min.css" /> </head> <body class="main-bg"> […]

The post Bootstrap 5 – Responsive Login Form appeared first on csshint - A designer hub.

]]>
How to create Responsive Login Form using Bootstrap 5. Designed by Meb Zone a codepen user.

Navigation Menu expand On Click

HTML

<html lang="en">

<head>
  <meta charset="UTF-8" />
  <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  <title>Bootstrap 5 - Login Form</title>
  <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.0-beta1/dist/css/bootstrap.min.css" />
</head>

<body class="main-bg">
  <!-- Login Form -->
  <div class="container">
    <div class="row justify-content-center mt-5">
      <div class="col-lg-4 col-md-6 col-sm-6">
        <div class="card shadow">
          <div class="card-title text-center border-bottom">
            <h2 class="p-3">Login</h2>
          </div>
          <div class="card-body">
            <form>
              <div class="mb-4">
                <label for="username" class="form-label">Username/Email</label>
                <input type="text" class="form-control" id="username" />
              </div>
              <div class="mb-4">
                <label for="password" class="form-label">Password</label>
                <input type="password" class="form-control" id="password" />
              </div>
              <div class="mb-4">
                <input type="checkbox" class="form-check-input" id="remember" />
                <label for="remember" class="form-label">Remember Me</label>
              </div>
              <div class="d-grid">
                <button type="submit" class="btn text-light main-bg">Login</button>
              </div>
            </form>
          </div>
        </div>
      </div>
    </div>
  </div>
</body>

</html>

CSS

:root{
  --main-bg:#e91e63;
}

.main-bg {
  background: var(--main-bg) !important;
}

input:focus, button:focus {
  border: 1px solid var(--main-bg) !important;
  box-shadow: none !important;
}

.form-check-input:checked {
  background-color: var(--main-bg) !important;
  border-color: var(--main-bg) !important;
}

.card, .btn, input{
  border-radius:0 !important;
}

 

Output

Bootstrap 5 – Responsive Login Form

Bootstrap 5 – Responsive Login Form

The post Bootstrap 5 – Responsive Login Form appeared first on csshint - A designer hub.

]]>
Bootstrap 5 copy to clipboard items with tooltips https://csshint.com/bootstrap-5-copy-to-clipboard-items-with-tooltips/ Sat, 29 Apr 2023 16:23:49 +0000 https://csshint.com/?p=8378 In this article we are going to learn How to create copy to clipboard items with tooltips using bootstrap. Designed by bbbootstrap. HTML <div class="container mt-5"> <div class="row d-flex justify-content-center"> <div class="col-md-6"> <div class="card p-3 px-4"> <div class="d-flex justify-content-between align-items-center mb-3"> <span class="text-line me-2">Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod</span> <button […]

The post Bootstrap 5 copy to clipboard items with tooltips appeared first on csshint - A designer hub.

]]>
In this article we are going to learn How to create copy to clipboard items with tooltips using bootstrap. Designed by bbbootstrap.

Bootstrap 5 copy to clipboard items with tooltips

HTML

<div class="container mt-5">
   <div class="row d-flex justify-content-center">
      <div class="col-md-6">
         <div class="card p-3 px-4">
            <div class="d-flex justify-content-between align-items-center mb-3"> <span class="text-line me-2">Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod</span> <button onclick="copy('Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod','#copy_button_1')" id="copy_button_1" class="btn btn-sm btn-success copy-button">Copy</button> </div>
            <div class="d-flex justify-content-between align-items-center mb-3"> <span class="text-line me-2">Quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</span> <button onclick="copy('Quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.','#copy_button_2')" id="copy_button_2" class="btn btn-sm btn-success copy-button">Copy</button> </div>
            <div class="d-flex justify-content-between align-items-center mb-3"> <span class="text-line me-2">Duis aute irure dolor in reprehenderit in voluptate velit</span> <button onclick="copy('Duis aute irure dolor in reprehenderit in voluptate velit','#copy_button_3')" id="copy_button_3" class="btn btn-sm btn-success copy-button">Copy</button> </div>
            <div class="d-flex justify-content-between align-items-center mb-3"> <span class="text-line me-2">Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia.</span> <button onclick="copy('Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia.','#copy_button_4')" id="copy_button_4" class="btn btn-sm btn-success copy-button">Copy</button> </div>
            <div class="d-flex justify-content-between align-items-center mb-3"> <span class="text-line me-2">Quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</span> <button onclick="copy('Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod','#copy_button_5')" id="copy_button_5" class="btn btn-sm btn-success copy-button">Copy</button> </div>
         </div>
      </div>
   </div>
</div>

CSS

body{
    background: #B9B4B4
}
.card{
    border: none;
    height: 100%
}
.copy-button{
    height: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative
}
.tip{
    background-color: #263646;
    padding: 0 14px;
    line-height: 27px;
    position: absolute;
    border-radius: 4px;
    z-index: 100;
    color: #fff;
    font-size: 12px;
    animation-name: tip;
    animation-duration: .6s;
    animation-fill-mode: both
}
.tip:before{
    content: "";
    background-color: #263646;
    height: 10px;
    width: 10px;
    display: block;
    position: absolute;
    transform: rotate(45deg);
    top: -4px;
    left: 17px
}
#copied_tip{
    animation-name: come_and_leave;
    animation-duration: 1s;
    animation-fill-mode: both;
    bottom: -35px;
    left:2px
}
.text-line{
    font-size: 14px
}

JAVASCRIPT

function copy(text, target) {
setTimeout(function() {
$('#copied_tip').remove();
}, 800);
$(target).append("<div class='tip' id='copied_tip'>Copied!</div>");
var input = document.createElement('input');
input.setAttribute('value', text);
document.body.appendChild(input);
input.select();
var result = document.execCommand('copy');
document.body.removeChild(input)
return result;
}

RESOURCES

https://cdn.jsdelivr.net/npm/bootstrap@5.0.0-alpha1/dist/css/bootstrap.min.css

https://cdn.jsdelivr.net/npm/bootstrap@5.0.0-alpha1/dist/js/bootstrap.bundle.min.js

https://cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js

 

The post Bootstrap 5 copy to clipboard items with tooltips appeared first on csshint - A designer hub.

]]>
Bootstrap 5 simple tabbed login register form https://csshint.com/bootstrap-5-simple-tabbed-login-register-form/ Sat, 29 Apr 2023 16:11:52 +0000 https://csshint.com/?p=8371 How to create simple Bootstrap tabbed login register form . Designed by bbbootstrap. HTML <div class="d-flex justify-content-center align-items-center mt-5"> <div class="card"> <ul class="nav nav-pills mb-3" id="pills-tab" role="tablist"> <li class="nav-item text-center"> <a class="nav-link active btl" id="pills-home-tab" data-toggle="pill" href="#pills-home" role="tab" aria-controls="pills-home" aria-selected="true">Login</a> </li> <li class="nav-item text-center"> <a class="nav-link btr" id="pills-profile-tab" data-toggle="pill" href="#pills-profile" role="tab" aria-controls="pills-profile" aria-selected="false">Signup</a> </li> </ul> […]

The post Bootstrap 5 simple tabbed login register form appeared first on csshint - A designer hub.

]]>
How to create simple Bootstrap tabbed login register form . Designed by bbbootstrap.

Bootstrap 5 simple tabbed login register form

HTML

<div class="d-flex justify-content-center align-items-center mt-5">
   <div class="card">
      <ul class="nav nav-pills mb-3" id="pills-tab" role="tablist">
         <li class="nav-item text-center">
            <a class="nav-link active btl" id="pills-home-tab" data-toggle="pill" href="#pills-home" role="tab" aria-controls="pills-home" aria-selected="true">Login</a>
         </li>
         <li class="nav-item text-center">
            <a class="nav-link btr" id="pills-profile-tab" data-toggle="pill" href="#pills-profile" role="tab" aria-controls="pills-profile" aria-selected="false">Signup</a>
         </li>
      </ul>
      <div class="tab-content" id="pills-tabContent">
         <div class="tab-pane fade show active" id="pills-home" role="tabpanel" aria-labelledby="pills-home-tab">
            <div class="form px-4 pt-5">
               <input type="text" name="" class="form-control" placeholder="Email or Phone">
               <input type="text" name="" class="form-control" placeholder="Password">
               <button class="btn btn-dark btn-block">Login</button>
            </div>
         </div>
         <div class="tab-pane fade" id="pills-profile" role="tabpanel" aria-labelledby="pills-profile-tab">
            <div class="form px-4">
               <input type="text" name="" class="form-control" placeholder="Name">
               <input type="text" name="" class="form-control" placeholder="Email">
               <input type="text" name="" class="form-control" placeholder="Phone">
               <input type="text" name="" class="form-control" placeholder="Password">
               <button class="btn btn-dark btn-block">Signup</button>
            </div>
         </div>
      </div>
   </div>
</div>

CSS

body{
     background-color: #000;
}
 .card{
     width: 400px;
     border:none;
}
 .btr{
     border-top-right-radius: 5px !important;
}
 .btl{
     border-top-left-radius: 5px !important;
}
 .btn-dark {
     color: #fff;
     background-color: #0d6efd;
     border-color: #0d6efd;
}
 .btn-dark:hover {
     color: #fff;
     background-color: #0d6efd;
     border-color: #0d6efd;
}
 .nav-pills{
     display:table !important;
     width:100%;
}
 .nav-pills .nav-link {
     border-radius: 0px;
     border-bottom: 1px solid #0d6efd40;
}
 .nav-item{
     display: table-cell;
     background: #0d6efd2e;
}
 .form{
     padding: 10px;
     height: 300px;
}
 .form input{
     margin-bottom: 12px;
     border-radius: 3px;
}
 .form input:focus{
     box-shadow: none;
}
 .form button{
     margin-top: 20px;
}

Resources

https://cdn.jsdelivr.net/npm/bootstrap@5.0.0-alpha1/dist/css/bootstrap.min.css

https://cdn.jsdelivr.net/npm/bootstrap@5.0.0-alpha1/dist/js/bootstrap.bundle.min.js

https://cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js

 

The post Bootstrap 5 simple tabbed login register form appeared first on csshint - A designer hub.

]]>
Bootstrap 5 validation login form using vue.js https://csshint.com/bootstrap-5-validation-login-form-using-vue-js/ Thu, 20 Apr 2023 16:49:17 +0000 https://csshint.com/?p=8325 Bootstrap 5 validation login form using vue.js : snippets by bbbootstrap. HTML <div class="container mt-5"> <div class="row d-flex justify-content-center"> <div class="col-md-6"> <div class="card px-5 py-5" id="form1"> <div class="form-data" v-if="!submitted"> <div class="forms-inputs mb-4"> <span>Email or username</span> <input autocomplete="off" type="text" v-model="email" v-bind:class="{'form-control':true, 'is-invalid' : !validEmail(email) && emailBlured}" v-on:blur="emailBlured = true"> <div class="invalid-feedback">A valid email is required!</div> </div> […]

The post Bootstrap 5 validation login form using vue.js appeared first on csshint - A designer hub.

]]>
Bootstrap 5 validation login form using vue.js : snippets by bbbootstrap.

Bootstrap 5 validation login form using vue.js

HTML

<div class="container mt-5">
    <div class="row d-flex justify-content-center">
        <div class="col-md-6">
            <div class="card px-5 py-5" id="form1">
                <div class="form-data" v-if="!submitted">
                    <div class="forms-inputs mb-4"> <span>Email or username</span> <input autocomplete="off" type="text" v-model="email" v-bind:class="{'form-control':true, 'is-invalid' : !validEmail(email) && emailBlured}" v-on:blur="emailBlured = true">
                        <div class="invalid-feedback">A valid email is required!</div>
                    </div>
                    <div class="forms-inputs mb-4"> <span>Password</span> <input autocomplete="off" type="password" v-model="password" v-bind:class="{'form-control':true, 'is-invalid' : !validPassword(password) && passwordBlured}" v-on:blur="passwordBlured = true">
                        <div class="invalid-feedback">Password must be 8 character!</div>
                    </div>
                    <div class="mb-3"> <button v-on:click.stop.prevent="submit" class="btn btn-dark w-100">Login</button> </div>
                </div>
                <div class="success-data" v-else>
                    <div class="text-center d-flex flex-column"> <i class='bx bxs-badge-check'></i> <span class="text-center fs-1">You have been logged in <br> Successfully</span> </div>
                </div>
            </div>
        </div>
    </div>
</div>

CSS

body{background: #000}.card{border: none;height: 320px}.forms-inputs{position: relative}.forms-inputs span{position: absolute;top:-18px;left: 10px;background-color: #fff;padding: 5px 10px;font-size: 15px}.forms-inputs input{height: 50px;border: 2px solid #eee}.forms-inputs input:focus{box-shadow: none;outline: none;border: 2px solid #000}.btn{height: 50px}.success-data{display: flex;flex-direction: column}.bxs-badge-check{font-size: 90px}

JAVASCRIPT

var app = new Vue({
  el: '#form1',
  data: function () {
    return {
    email : "",
    emailBlured : false,
    valid : false,
    submitted : false,
    password:"",
    passwordBlured:false
    }
  },

  methods:{

    validate : function(){
this.emailBlured = true;
this.passwordBlured = true;
if( this.validEmail(this.email) && this.validPassword(this.password)){
this.valid = true;
}
},

validEmail : function(email) {
   
var re = /(.+)@(.+){2,}\.(.+){2,}/;
if(re.test(email.toLowerCase())){
  return true;
}

},

validPassword : function(password) {
   if (password.length > 7) {
    return true;
   }
},

submit : function(){
this.validate();
if(this.valid){
this.submitted = true;
}
}
  }
});

RESOURCES

https://cdn.jsdelivr.net/npm/bootstrap@5.0.0-alpha1/dist/css/bootstrap.min.css
https://cdn.jsdelivr.net/npm/bootstrap@5.0.0-alpha1/dist/js/bootstrap.bundle.min.js
https://cdn.jsdelivr.net/npm/vue@2.6.12/dist/vue.js
https://cdn.jsdelivr.net/npm/boxicons@latest/css/boxicons.min.css

 

The post Bootstrap 5 validation login form using vue.js appeared first on csshint - A designer hub.

]]>
Bootstrap 5 Simple Multi-Step Form https://csshint.com/bootstrap-5-simple-multi-step-form/ Thu, 20 Apr 2023 15:27:11 +0000 https://csshint.com/?p=8312 Bootstrap 5 Simple Multi-Step Form : snippets by gerardo-camorlinga a bbbootstrap user. HTML <div class="container mt-5"> <div class="row d-flex justify-content-center align-items-center"> <div class="col-md-6"> <form id="regForm"> <h1 id="register">Donate</h1> <div class="all-steps" id="all-steps"> <span class="step"></span> <span class="step"></span> <span class="step"></span> <span class="step"></span> </div> <div class="tab"> <h3>Donation Type:</h3> <label class="container">One time <input type="radio" checked="checked" name="radio"> <span class="checkmark"></span> </label> <label class="container">Recurring […]

The post Bootstrap 5 Simple Multi-Step Form appeared first on csshint - A designer hub.

]]>
Bootstrap 5 Simple Multi-Step Form : snippets by gerardo-camorlinga a bbbootstrap user.

Bootstrap 5 Simple Multi-Step Form

HTML

<div class="container mt-5">
    <div class="row d-flex justify-content-center align-items-center">
        <div class="col-md-6">
            <form id="regForm">
                <h1 id="register">Donate</h1>
                <div class="all-steps" id="all-steps"> <span class="step"></span> <span class="step"></span> <span class="step"></span> <span class="step"></span> </div>
                <div class="tab">
                    <h3>Donation Type:</h3>
                    <label class="container">One time
                            <input type="radio" checked="checked" name="radio">
                            <span class="checkmark"></span>
                    </label>
                    <label class="container">Recurring
                            <input type="radio" name="radio">
                            <span class="checkmark"></span>
                    </label>
                    <p><input type="text" placeholder="Amount" oninput="this.className = ''" name="amount"></p>

                </div>
                <div class="tab">
                    <p><input placeholder="First Name" oninput="this.className = ''" name="first"></p>
                    <p><input placeholder="Last Name" oninput="this.className = ''" name="last"></p>
                    <p><input placeholder="Email" oninput="this.className = ''" name="email"></p>
                    <p><input placeholder="Phone" oninput="this.className = ''" name="phone"></p>
                    <p><input placeholder="Street Address" oninput="this.className = ''" name="address"></p>
                    <p><input placeholder="City" oninput="this.className = ''" name="city"></p>
                    <p><input placeholder="State" oninput="this.className = ''" name="state"></p>
                    <p><input placeholder="Country" oninput="this.className = ''" name="country"></p>

                </div>
                <div class="tab">
                    <p><input placeholder="Credit Card #" oninput="this.className = ''" name="email"></p>
                    <p>Exp Month
                        <select id="month">
    <option value="1">January</option>
    <option value="2">February</option>
    <option value="3">March</option>
    <option value="4">April</option>
    <option value="5">May</option>
    <option value="6">June</option>
    <option value="7">July</option>
    <option value="8">August</option>
    <option value="9">September</option>
    <option value="10">October</option>
    <option value="11">November</option>
    <option value="12">December</option>
</select></p>
                    <p>Exp Year
                        <select id="year">
    <option value="2021">2021</option>
    <option value="2022">2022</option>
    <option value="2023">2023</option>
    <option value="2024">2024</option>
</select></p>

                    <p><input placeholder="CVV" oninput="this.className = ''" name="phone"></p>
                </div>

                <div class="thanks-message text-center" id="text-message"> <img src="https://i.imgur.com/O18mJ1K.png" width="100" class="mb-4">
                    <h3>Thanks for your Donation!</h3> <span>Your donation has been entered! We will contact you shortly!</span>
                </div>
                <div style="overflow:auto;" id="nextprevious">
                    <div style="float:right;"> <button type="button" id="prevBtn" onclick="nextPrev(-1)">Previous</button> <button type="button" id="nextBtn" onclick="nextPrev(1)">Next</button> </div>
                </div>
            </form>
        </div>
    </div>
</div>

 

CSS

/* your CSS goes here*/
 body {
    background: #eee
}

#regForm {
    background-color: #ffffff;
    margin: 0px auto;
    font-family: Raleway;
    padding: 40px;
    border-radius: 10px
}

h1 {
    text-align: center
}

input {
    padding: 10px;
    width: 100%;
    font-size: 17px;
    font-family: Raleway;
    border: 1px solid #aaaaaa
}

input.invalid {
    background-color: #ffdddd
}

.tab {
    display: none
}

button {
    background-color: #4CAF50;
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    font-size: 17px;
    font-family: Raleway;
    cursor: pointer
}

button:hover {
    opacity: 0.8
}

#prevBtn {
    background-color: #bbbbbb
}

.step {
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbbbbb;
    border: none;
    border-radius: 50%;
    display: inline-block;
    opacity: 0.5
}

.step.active {
    opacity: 1
}

.step.finish {
    background-color: #4CAF50
}

.all-steps {
    text-align: center;
    margin-top: 30px;
    margin-bottom: 30px
}

.thanks-message {
    display: none
}

.container {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 22px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}


/* Hide the browser's default radio button */

.container input[type="radio"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}


/* Create a custom radio button */

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #eee;
    border-radius: 50%;
}


/* On mouse-over, add a grey background color */

.container:hover input~.checkmark {
    background-color: #ccc;
}


/* When the radio button is checked, add a blue background */

.container input:checked~.checkmark {
    background-color: #2196F3;
}


/* Create the indicator (the dot/circle - hidden when not checked) */

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}


/* Show the indicator (dot/circle) when checked */

.container input:checked~.checkmark:after {
    display: block;
}


/* Style the indicator (dot/circle) */

.container .checkmark:after {
    top: 9px;
    left: 9px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: white;
}

 

Javascript

//your javascript goes here
var currentTab = 0;
document.addEventListener("DOMContentLoaded", function(event) {


    showTab(currentTab);

});

function showTab(n) {
    var x = document.getElementsByClassName("tab");
    x[n].style.display = "block";
    if (n == 0) {
        document.getElementById("prevBtn").style.display = "none";
    } else {
        document.getElementById("prevBtn").style.display = "inline";
    }
    if (n == (x.length - 1)) {
        document.getElementById("nextBtn").innerHTML = "Submit";
    } else {
        document.getElementById("nextBtn").innerHTML = "Next";
    }
    fixStepIndicator(n)
}

function nextPrev(n) {
    var x = document.getElementsByClassName("tab");
    if (n == 1 && !validateForm()) return false;
    x[currentTab].style.display = "none";
    currentTab = currentTab + n;
    if (currentTab >= x.length) {
        // document.getElementById("regForm").submit();
        // return false;
        //alert("sdf");
        document.getElementById("nextprevious").style.display = "none";
        document.getElementById("all-steps").style.display = "none";
        document.getElementById("register").style.display = "none";
        document.getElementById("text-message").style.display = "block";




    }
    showTab(currentTab);
}

function validateForm() {
    var x, y, i, valid = true;
    x = document.getElementsByClassName("tab");
    y = x[currentTab].getElementsByTagName("input");
    for (i = 0; i < y.length; i++) {
        if (y[i].value == "") {
            y[i].className += " invalid";
            valid = false;
        }
    }
    if (valid) { document.getElementsByClassName("step")[currentTab].className += " finish"; }
    return valid;
}

function fixStepIndicator(n) {
    var i, x = document.getElementsByClassName("step");
    for (i = 0; i < x.length; i++) { x[i].className = x[i].className.replace(" active", ""); }
    x[n].className += " active";
}

 

RESOURCES

https://cdn.jsdelivr.net/npm/bootstrap@5.0.1/dist/css/bootstrap.min.css

https://cdn.jsdelivr.net/npm/bootstrap@5.0.1/dist/js/bootstrap.bundle.min.js

https://cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js

https://cdn.jsdelivr.net/npm/bootstrap-icons@1.5.0/font/bootstrap-icons.css

 

The post Bootstrap 5 Simple Multi-Step Form appeared first on csshint - A designer hub.

]]>
Bootstrap 5 search bar input with icons inside https://csshint.com/bootstrap-5-search-bar-input-with-icons-inside/ Mon, 10 Apr 2023 15:57:49 +0000 https://csshint.com/?p=8304 Bootstrap 5 search bar input with icons inside : snippets by bbbootstrap. RESOURCES Bootstrap 4 CSS : https://cdn.jsdelivr.net/npm/bootstrap@5.0.0-alpha1/dist/css/bootstrap.min.css Bootstrap 4 JS : https://cdn.jsdelivr.net/npm/bootstrap@5.0.0-alpha1/dist/js/bootstrap.bundle.min.js Jquery : https://cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js Fontawesome : https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css

The post Bootstrap 5 search bar input with icons inside appeared first on csshint - A designer hub.

]]>
Bootstrap 5 search bar input with icons inside : snippets by bbbootstrap.

Bootstrap 5 search bar

RESOURCES

Bootstrap 4 CSS : https://cdn.jsdelivr.net/npm/bootstrap@5.0.0-alpha1/dist/css/bootstrap.min.css
Bootstrap 4 JS  : https://cdn.jsdelivr.net/npm/bootstrap@5.0.0-alpha1/dist/js/bootstrap.bundle.min.js
Jquery          : https://cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js
Fontawesome     : https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css

The post Bootstrap 5 search bar input with icons inside appeared first on csshint - A designer hub.

]]>
40+ Bootstrap Product Cards https://csshint.com/bootstrap-product-cards/ Mon, 05 Sep 2022 06:43:19 +0000 http://csshint.com/?p=7501 Latest Collection of 100% free Bootstrap Product Cards code examples from Codepen and other resources. Bootstrap 4 Ecommerce products list with range filters Author Anand Vunnam Made with HTML / CSS / JS Demo / Code Get Hosting Bootstrap 5 ecommerce product card Author BBBootstrap Team Made with HTML / CSS Demo / Code Get […]

The post 40+ Bootstrap Product Cards appeared first on csshint - A designer hub.

]]>
Latest Collection of 100% free Bootstrap Product Cards code examples from Codepen and other resources.

Bootstrap 4 Ecommerce products list with range filters

Bootstrap 4 Ecommerce products list with range filters

Author

  • Anand Vunnam

Made with

  • HTML / CSS / JS

Demo / Code Get Hosting

Bootstrap Multiple Item Product Carousel

Bootstrap Multiple Item Product Carousel

Author

  • Tutorial Republic

Made with

  • HTML / CSS / JS

Demo / Code Get Hosting

Popular Products Section Using HTML , CSS , Bootstrap

Popular Products Section Using HTML , CSS , Bootstrap

Author

  • Hamza Gourram

Made with

  • HTML / CSS

Demo / Code Get Hosting

Bootstrap 4 product ecommerce category page

Bootstrap 4 product ecommerce category page

Author

  • BBBootstrap Team

Made with

  • HTML / CSS

Demo / Code Get Hosting

Bootstrap 4 eCommerce category product list page

Bootstrap 4 eCommerce category product list page

Author

  • BBBootstrap Team

Made with

  • HTML / CSS

Demo / Code Get Hosting

Bootstrap 4 ecommerce product page with carousel and custom radio buttons

Bootstrap 4 ecommerce product page with carousel and custom radio buttons

Author

  • BBBootstrap Team

Made with

  • HTML / CSS

Demo / Code Get Hosting

Bootstrap 4 ecommerce product listing with quantity and star ratings

Bootstrap 4 ecommerce product listing with quantity and star ratings

Author

  • BBBootstrap Team

Made with

  • HTML / CSS

Demo / Code Get Hosting

Bootstrap 4 ecommerce item products list with description and rating icons

Bootstrap 4 ecommerce item products list with description and rating icons

Author

  • Ask SNB

Made with

  • HTML / CSS

Demo / Code Get Hosting

Bootstrap 4 product list with pricing and hover details

Bootstrap 4 product list with pricing and hover details

Author

  • Ask SNB

Made with

  • HTML / CSS

Demo / Code Get Hosting

Bootstrap 4 ecommerce single product with add to cart button

Bootstrap 4 ecommerce single product with add to cart button

Author

  • anwar shihab

Made with

  • HTML / CSS

Demo / Code Get Hosting

Bootstrap 4 Multi-select product list

Bootstrap 4 Multi-select product list

Author

  • Omkar Bailkeri

Made with

  • HTML / CSS / JS

Demo / Code Get Hosting

Bootstrap 4 Product list with add to bag and order now options

Bootstrap 4 Product list with add to bag and order now options

Author

  • Omkar Bailkeri

Made with

  • HTML / CSS

Demo / Code Get Hosting

The post 40+ Bootstrap Product Cards appeared first on csshint - A designer hub.

]]>
Bootstrap Responsive Pricing Table Snippet https://csshint.com/bootstrap-responsive-pricing-table/ Fri, 02 Sep 2022 17:08:56 +0000 http://csshint.com/?p=7552 Amazing Bootstrap Responsive Pricing Table Snippet with Custom Hover Effects and Buttons created by startbootstrap.

The post Bootstrap Responsive Pricing Table Snippet appeared first on csshint - A designer hub.

]]>
Amazing Bootstrap Responsive Pricing Table Snippet with Custom Hover Effects and Buttons created by startbootstrap.

The post Bootstrap Responsive Pricing Table Snippet appeared first on csshint - A designer hub.

]]>
Bootstrap Login Form with Floating Labels https://csshint.com/bootstrap-login-form-with-floating-labels/ Fri, 02 Sep 2022 16:24:34 +0000 http://csshint.com/?p=7549 Look at this amazing Bootstrap Login Form with Floating Labels and Social Login Buttons Created By startbootstrap.

The post Bootstrap Login Form with Floating Labels appeared first on csshint - A designer hub.

]]>
Look at this amazing Bootstrap Login Form with Floating Labels and Social Login Buttons Created By startbootstrap.

The post Bootstrap Login Form with Floating Labels appeared first on csshint - A designer hub.

]]>
Bootstrap Contact Form Split Image Layout https://csshint.com/bootstrap-contact-form-split-image-layout/ Fri, 02 Sep 2022 16:19:36 +0000 http://csshint.com/?p=7542 Look at this A Creative bootstrap Contact Form Split Image Layout template and integrate it into your website.

The post Bootstrap Contact Form Split Image Layout appeared first on csshint - A designer hub.

]]>
Look at this A Creative bootstrap Contact Form Split Image Layout template and integrate it into your website.

The post Bootstrap Contact Form Split Image Layout appeared first on csshint - A designer hub.

]]>