HTML preprocessors can make writing HTML more powerful or convenient. For instance, Markdown is designed to be easier to write and read for text documents and you could write a loop in Pug.
In CodePen, whatever you write in the HTML editor is what goes within the <body>
tags in a basic HTML5 template. So you don't have access to higher-up elements like the <html>
tag. If you want to add classes there that can affect the whole document, this is the place to do it.
In CodePen, whatever you write in the HTML editor is what goes within the <body>
tags in a basic HTML5 template. If you need things in the <head>
of the document, put that code here.
The resource you are linking to is using the 'http' protocol, which may not work when the browser is using https.
CSS preprocessors help make authoring CSS easier. All of them offer things like variables and mixins to provide convenient abstractions.
It's a common practice to apply CSS to a page that styles elements such that they are consistent across all browsers. We offer two of the most popular choices: normalize.css and a reset. Or, choose Neither and nothing will be applied.
To get the best cross-browser support, it is a common practice to apply vendor prefixes to CSS properties and values that require them to work. For instance -webkit-
or -moz-
.
We offer two popular choices: Autoprefixer (which processes your CSS server-side) and -prefix-free (which applies prefixes via a script, client-side).
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.
You can apply CSS to your Pen from any stylesheet on the web. Just put a URL to it here and we'll apply it, in the order you have them, before the CSS in the Pen itself.
You can also link to another Pen here (use the .css
URL Extension) and we'll pull the CSS from that Pen and include it. If it's using a matching preprocessor, use the appropriate URL Extension and we'll combine the code before preprocessing, so you can use the linked Pen as a true dependency.
JavaScript preprocessors can help make authoring JavaScript easier and more convenient.
Babel includes JSX processing.
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.
You can apply a script from anywhere on the web to your Pen. Just put a URL to it here and we'll add it, in the order you have them, before the JavaScript in the Pen itself.
If the script you link to has the file extension of a preprocessor, we'll attempt to process it before applying.
You can also link to another Pen here, and we'll pull the JavaScript from that Pen and include it. If it's using a matching preprocessor, we'll combine the code before preprocessing, so you can use the linked Pen as a true dependency.
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.
Using packages here is powered by esm.sh, which makes packages from npm not only available on a CDN, but prepares them for native JavaScript ESM usage.
All packages are different, so refer to their docs for how they work.
If you're using React / ReactDOM, make sure to turn on Babel for the JSX processing.
If active, Pens will autosave every 30 seconds after being saved once.
If enabled, the preview panel updates automatically as you code. If disabled, use the "Run" button to update.
If enabled, your code will be formatted when you actively save your Pen. Note: your code becomes un-folded during formatting.
Visit your global Editor Settings.
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css" integrity="sha384-Vkoo8x4CGsO3+Hhxv8T/Q5PaXtkKtu6ug5TOeNV6gBiFeWPGFN9MuhOf23Q9Ifjh" crossorigin="anonymous">
<link rel="stylesheet" href="https://pro.fontawesome.com/releases/v5.10.0/css/all.css" integrity="sha384-AYmEC3Yw5cVb3ZcuHtOA93w35dYTsvhLPVnYs9eStHfGJvOvKxVfELGroGkvsg+p" crossorigin="anonymous" />
<script src="https://code.jquery.com/jquery-3.4.1.slim.min.js " integrity="sha384-J6qa4849blE2+poT4WnyKhv5vZF5SrPo0iEjwBvKU7imGFAV0wwj1yYfoRSJoZ+n " crossorigin="anonymous "></script>
<title>Document</title>
<style type="text/css">
.bgd-danger {
background: linear-gradient(30deg, red, yellow);
}
.btn-n {
color: white;
background: gray;
transition: .2s ease;
transform: skew(0deg);
}
.btn-n:hover {
background: red;
color: white;
box-shadow: 0 0 10px rgba(0, 0, 0, .8);
transition: .2s ease;
transform: scale(1.08) translateY(-3px);
}
.btn-y {
background: gray;
color: white;
transition: .2s ease;
}
.btn-y:hover {
background: green;
color: white;
box-shadow: 0 0 10px rgba(0, 0, 0, .8);
transition: .2s ease;
transform: scale(1.08) translateY(-3px);
}
.card-bg {
transition: 1s ease;
}
.card-bg:hover {
transform: skew(-10deg) scale(1.05);
transition: 1s ease;
}
.icons {
transition: .8s ease;
cursor: pointer;
}
.icons:hover {
color: #007BFF;
transform: scale(1.05) translateY(-5px);
transition: .8s ease;
}
.iconck {
color: #007BFF;
transform: scale(1.05) translateY(-5px);
}
.icon {
transition: 1s ease;
}
.icon:hover {
transform: scale(1.2);
transition: 1s ease;
}
.text-trans {
transition: .5s ease;
}
.text-trans:hover {
transform: skew(-15deg);
transition: .5s ease;
}
.btns {
background: #007BFF;
color: white;
font-weight: bold;
font-size: 18px;
transition: 1s ease;
}
.btns:hover {
text-decoration: none;
color: white;
box-shadow: 5px 5px 7px rgba(0, 0, 0, .8);
transform: scale(1.05) translateY(-8px) skew(-10deg);
transition: 1s ease;
}
.bg-alert {
box-shadow: 0 0 3px rgba(0, 0, 0, .8);
}
.bg-alert-bg {
box-shadow: 0 0 10px rgba(0, 0, 0, .8);
transform: scale(1.05);
}
.w-35 {
width: 36% !important;
}
.mrg-ct {
margin-top: 5px;
margin-bottom: 5px;
}
.int-chagne {
transition: 1s ease;
}
.int-chagne:hover {
transform: skew(-15deg);
transition: 1s ease;
}
.turn {
display: block;
transform: none;
transition: .5s ease;
}
.turnb {
display: block;
transform: rotate(-180deg);
transition: .5s ease;
}
.clps {
color: #007BFF;
text-decoration: none !important;
}
.clps:hover {
color: #007BFF;
}
.clps-btn-style {
transition: .5s ease;
}
.clps-btn-style:hover {
color: #007BFF;
transform: skew(-15deg);
transition: .5s ease;
}
p {
margin-bottom: .5px !important;
}
</style>
</head>
<body>
<nav class="navbar navbar-expand-lg navbar-dark bg-dark">
<a class="navbar-brand" href="#">
<i class="fad fa-star-of-david mr-2" style="color: rgb(255, 255, 50);"></i>Strange Shop
</a>
</nav>
<div class="container">
<h1 class="text-center my-5">Checkout</h1>
<div class="tab-content">
<div class="tab-pane active" id="step1">
<div class="row text-center">
<div class="col-sm col-12">
<div class="alert alert-primary bg-alert-bg" role="alert">
1 . Please enter your order information
</div>
</div>
<div class="col-sm col-12">
<div class="alert alert-secondary" role="alert">
2 . Cash Payment
</div>
</div>
<div class="col-sm col-12">
<div class="alert alert-secondary" role="alert">
3 . Complete
</div>
</div>
</div>
<div class="container">
<div class="row justify-content-center">
<div class="col-md-8">
<div class="row">
<div class="col-md-12">
<div class="accordion" id="accordionExample">
<div class="card border-0">
<div class="card-header d-flex justify-content-between" id="headingOne">
<h2 class="mb-0">
<button id="turnbf" class="btn btn-link d-flex turnaf clps" type="button" data-toggle="collapse" data-target="#collapseOne" aria-expanded="true" aria-controls="collapseOne">
<p class="clps-btn-style">Show the cart detail</p>
<span class="mx-1"><i class="far fa-chevron-double-down"></i></span>
</button>
</h2>
<span class="my-2 text-danger h4">US $ 3600</span>
</div>
<div id="collapseOne" class="collapse show" aria-labelledby="headingOne" data-parent="#accordionExample">
<div class="card-body p-0">
<div>
<table class="table table-sm">
<thead>
<tr class="ml-3">
<th></th>
<th></th>
<th class="text-left" width="50%">Product</th>
<th class="text-center" width="45%">Pieces</th>
<th>Subtotal</th>
</tr>
</thead>
<tbody>
<tr>
<td class="align-middle text-center">
<a href="#delete" data-toggle="modal" data-title="Delete your product ?">
<i class="fal fa-trash-alt"></i>
</a>
</td>
<td>
<div class="rounded" style="background-image: url(https://unsplash.com/photos/ZBwQ2bCbJjw/download?force=true&w=640); width: 60px; height: 60px; background-size: cover;"></div>
</td>
<td class="align-middle text-left">Spy Suit</td>
<td class="align-middle text-center">1 pieces</td>
<td class="align-middle text-right">$698</td>
</tr>
<tr>
<td class="align-middle text-center">
<a href="#delete" data-toggle="modal" data-title="Delete your product ?">
<i class="fal fa-trash-alt"></i>
</a>
</td>
<td>
<div class="rounded" style="background-image: url(https://unsplash.com/photos/vOwj38HFrJ0/download?force=true&w=640); width: 60px; height: 60px; background-size: cover;"></div>
</td>
<td class="align-middle text-left">Hyper Hero Suit</td>
<td class="align-middle text-center">2 pieces</td>
<td class="align-middle text-right">$1998</td>
</tr>
<tr>
<td class="align-middle text-center">
<a href="#delete" data-toggle="modal" data-title="Delete your product ?">
<i class="fal fa-trash-alt"></i>
</a>
</td>
<td>
<div class="rounded" style="background-image: url(https://unsplash.com/photos/FxraOMAkLOs/download?force=true&w=640); width: 60px; height: 60px; background-size: cover;background-position: center center;"></div>
</td>
<td class="align-middle text-left">Stash Boots</td>
<td class="align-middle text-center">1 pieces</td>
<td class="align-middle text-right">$849</td>
</tr>
<tr>
<td colspan="4" class="align-middle text-right">Freight</td>
<td class="align-middle text-right">55</td>
</tr>
<tr>
<td colspan="4" class="align-middle text-right">Total</td>
<td class="align-middle text-right">3600</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
<div class="alert alert-secondary border-0 h4 text-center bg-alert rounded-0" role="alert">
Orderer information
</div>
<form class="needs-validation" novalidate>
<div class="form-row">
<div class="col-md-4 mb-3">
<label for="name">Name</label>
<input type="text" class="form-control space" id="name" placeholder="please enter your name . . ." required>
<div class="valid-feedback">
Correct format!
</div>
<div class="invalid-feedback">
Please enter your name . . .
</div>
</div>
<div class="col-md-4 mb-3">
<label for="email">Email</label>
<input type="text" class="form-control space" id="email" placeholder="please enter your email . . ." required>
<div class="valid-feedback">
Correct format!
</div>
<div class="invalid-feedback">
Please enter your email . . .
</div>
</div>
<div class="col-md-4 mb-3">
<label for="email">Telephone / Local phone</label>
<input type="tel" class="form-control space" id="email" placeholder="please enter your email . . ." required>
<div class="valid-feedback">
Correct format!
</div>
<div class="invalid-feedback">
Please enter your email . . .
</div>
</div>
</div>
<div class="form-row">
<div class="col-md-4 mb-3">
<label for="country">Country</label>
<select class="form-control" id="country . . ." required>
<option>Mars</option>
<option>Taiwan</option>
<option>Japan</option>
<option>Korea</option>
<option>America</option>
<option>Australia</option>
<option>French</option>
<option>Germany</option>
<option>Italy</option>
</select>
<div class="valid-feedback">
Correct format !
</div>
<div class="invalid-feedback">
Please enter your country . . .
</div>
</div>
<div class="col-md-4 mb-3">
<label for="city">City</label>
<input type="text" class="form-control space" id="city" placeholder="please enter your city . . ." required>
<div class="valid-feedback">
Correct format !
</div>
<div class="invalid-feedback">
Please enter your city . . .
</div>
</div>
<div class="col-md-4 mb-3">
<label for="postal">Postal code</label>
<select class="form-control" id="country . . ." required>
<option>990</option>
<option>991</option>
<option>992</option>
<option>993</option>
<option>994</option>
<option>995</option>
<option>996</option>
<option>997</option>
<option>998</option>
<option>999</option>
</select>
<div class="valid-feedback">
Correct format !
</div>
<div class="invalid-feedback">
Please enter your postal code . . .
</div>
</div>
<div class="col-md-12 mb-3">
<label for="address">Address</label>
<input type="text" class="form-control space" id="address" placeholder="please enter your town address . . ." required>
<div class="valid-feedback">
Correct format !
</div>
<div class="invalid-feedback">
Please enter your address . . .
</div>
</div>
</div>
<div class="d-flex justify-content-center">
<button class="btn btn-primary" type="submit">Submit orderer information</button>
</div>
</form>
<div class="list-group mt-5 p-0 justify-content-center" id="allList" role="tablist" style="flex-direction: row;">
<a href="#step2" class="list-group-item-dark w-35 py-2 rounded text-center btns" data-toggle="list" role="tab">
Next <i class="fal fa-arrow-circle-right"></i>
</a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="tab-pane" id="step2">
<div class="row text-center">
<div class="col-sm col-12">
<div class="alert alert-secondary" role="alert">
1 . Please enter your order information
</div>
</div>
<div class="col-sm col-12">
<div class="alert alert-primary bg-alert-bg" id="appear-1" role="alert">
2 . Cash Payment
</div>
</div>
<div class="col-sm col-12">
<div class="alert alert-secondary" role="alert">
3 . Complete
</div>
</div>
<div class="container">
<div class="row justify-content-center">
<div class="col-md-8">
<div class="row">
<div class="col-md-12">
<div class="card my-5 text-center border-0">
<div class="card-header bg-transparent" id="card">
<ul class="nav nav-tabs card-header-tabs">
<li class="nav-item">
<a class="nav-link active" href="#act1" data-toggle="tab" role="tab">
<p class="card-bg h6">Creadit card</p>
</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#act2" data-toggle="tab" role="tab">
<p class="card-bg h6">Phone pay</p>
</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#act3" data-toggle="tab" role="tab">
<p class="card-bg h6">ATM</p>
</a>
</li>
</ul>
</div>
<div class="tab-content">
<div class="tab-pane active" id="act1">
<div class="card-body border border-top-0 rounded-bottom">
<div class="d-sm-flex justify-content-around">
<i class="fab fa-cc-visa fa-7x icons"></i>
<i class="fab fa-cc-mastercard fa-7x icons"></i>
<i class="fab fa-cc-paypal fa-7x icons"></i>
<i class="fab fa-cc-jcb fa-7x icons"></i>
</div>
<h5 class="card-title mt-2">Choose your card type</h5>
<p class="card-text text-danger">If you can't use please contact bank blong to your creadit card thank you</p>
</div>
</div>
<div class="tab-pane" id="act2">
<div class="card-body border border-top-0 rounded-bottom">
<form action="" class="d-sm-flex justify-content-around">
<label class="btn btn-dark d-block d-flex justify-content-center">
<input type="radio" name="options" id="option3" class="mrg-ct mr-2">
<p class="int-chagne">Taiwan Mobile</p>
</label>
<label class="btn btn-dark d-block d-flex justify-content-center">
<input type="radio" name="options" id="option3" class="mrg-ct mr-2">
<p class="int-chagne">Chunghwa Tele</p>
</label>
<label class="btn btn-dark d-block d-flex justify-content-center">
<input type="radio" name="options" id="option3" class="mrg-ct mr-2">
<p class="int-chagne">Asia Pacific Tele</p>
</label>
<label class="btn btn-dark d-block d-flex justify-content-center">
<input type="radio" name="options" id="option3" class="mrg-ct mr-2">
<p class="int-chagne">Local Calls</p>
</label>
</form>
<h5 class="card-title mt-3">Choose you phone tele</h5>
<p class="card-text text-danger">If you can't use please contact belong to your telecompany thank you</p>
</div>
</div>
<div class="tab-pane" id="act3">
<div class="card-body border border-top-0 rounded-bottom">
<h5 class="card-title">Please transfer cash to the below account</h5>
<span class="d-block my-2">Seller's bank account number</span>
<span class="d-block text-danger font-weight-bold my-2">123-XXXXXXXXXXXXXXXX</span>
<p class="card-text">We will tell to seller your transfer account message<br>Then please him shipping for you</p>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="list-group my-5 p-0 justify-content-center" id="allList" role="tablist" style="flex-direction: row;">
<a href="#step1" class="list-group-item-dark mr-3 w-35 px-0 py-2 rounded text-center btns" data-toggle="list" role="tab">
<i class="fal fa-arrow-circle-left"></i> Previous
</a>
<a href="#step3" class="list-group-item-dark ml-3 w-35 px-0 py-2 rounded text-center btns" data-toggle="list" role="tab">
Next <i class="fal fa-arrow-circle-right"></i>
</a>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="tab-pane" id="step3">
<div class="row text-center">
<div class="col-sm col-12">
<div class="alert alert-secondary" role="alert">
1 . Please enter your order information
</div>
</div>
<div class="col-sm col-12">
<div class="alert alert-secondary" role="alert">
2 . Cash Payment
</div>
</div>
<div class="col-sm col-12">
<div class="alert alert-success bg-alert-bg" role="alert">
3 . Complete
</div>
</div>
</div>
<div class="container">
<div class="row justify-content-center">
<div class="col-md-8">
<div class="row">
<div class="col-md-12">
<h2 class="text-center my-3">Bought information</h2>
<div>
<table class="table table-sm">
<thead>
<tr class="ml-3">
<th></th>
<th class="text-left" width="50%">Product</th>
<th class="text-center" width="45%">Pieces</th>
<th>Subtotal</th>
</tr>
</thead>
<tbody>
<tr>
<td>
<div class="rounded" style="background-image: url(https://unsplash.com/photos/ZBwQ2bCbJjw/download?force=true&w=640); width: 60px; height: 60px; background-size: cover;"></div>
</td>
<td class="align-middle text-left">Spy Suit</td>
<td class="align-middle text-center">1 pieces</td>
<td class="align-middle text-right">$698</td>
</tr>
<tr>
<td>
<div class="rounded" style="background-image: url(https://unsplash.com/photos/vOwj38HFrJ0/download?force=true&w=640); width: 60px; height: 60px; background-size: cover;"></div>
</td>
<td class="align-middle text-left">Hyper Hero Suit</td>
<td class="align-middle text-center">2 pieces</td>
<td class="align-middle text-right">$1998</td>
</tr>
<tr>
<td>
<div class="rounded" style="background-image: url(https://unsplash.com/photos/FxraOMAkLOs/download?force=true&w=640); width: 60px; height: 60px; background-size: cover;background-position: center center;"></div>
</td>
<td class="align-middle text-left">Stash Boots</td>
<td class="align-middle text-center">1 pieces</td>
<td class="align-middle text-right">$849</td>
</tr>
<tr>
<td colspan="3" class="align-middle text-right">Freight</td>
<td class="align-middle text-right">55</td>
</tr>
<tr>
<td colspan="3" class="align-middle text-right">Total</td>
<td class="align-middle text-right">3600</td>
</tr>
</tbody>
</table>
</div>
<h2 class="text-center my-3">Profile</h2>
<div class="">
<table class="table table-sm">
<tbody>
<tr>
<td width="35%" class="align-middle text-left">Name</td>
<td class="text-left">Alick</td>
</tr>
<tr>
<td class="align-middle text-left">Telephone</td>
<td class="align-middle text-left">0966-666666</td>
</tr>
<tr>
<td class="align-middle text-left">Email</td>
<td class="align-middle text-left">A12345@gmail.com</td>
</tr>
<tr>
<td class="align-middle text-left">Address</td>
<td class="align-middle text-left">xxBlock xxRoad 123</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
<div class="list-group mt-5 p-0 mb-3 justify-content-center" id="allList" role="tablist" style="flex-direction: row;">
<a href="#step1" class="list-group-item-dark ml-3 w-35 py-2 rounded text-center btns home" data-toggle="list" role="tab">
<i class="fas fa-home"></i> Back
</a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<footer class="bg-dark mt-5 py-2">
<div class="container">
<ul class="d-flex justify-content-center align-items-center pl-0 pt-3 text-white" style="list-style: none;">
<li>© Copyright Chen</li>
<li class="ml-2 mr-1 pt-1">
<a href="#">
<i class="fab fa-facebook-square fa-2x text-white icon"></i>
</a>
</li>
<li class="mr-2 ml-1 pt-1">
<a href="#">
<i class="fab fa-instagram fa-2x text-white icon"></i>
</a>
</li>
<li class="text-trans"><a class="text-white text-decoration-none" href="#">About</a></li>
</ul>
</div>
</footer>
<!-- delete modal start-->
<div class="modal fade" id="delete" tabindex="-1" role="dialog" aria-labelledby="exampleModalLabel" aria-hidden="true">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header bgd-danger border-bottom-0">
<h5 class="modal-title text-white" id="exampleModalLabel">New message</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body bg-dark text-white">
This is a demo so don't have any items .
</div>
<div class="modal-footer bg-dark btn-change">
<button type="button" class="btn btn-n" data-dismiss="modal">No</button>
<button type="button" class="btn btn-y" data-dismiss="modal">Yes</button>
</div>
</div>
</div>
</div>
<!-- delete modal end-->
<script>
(function() {
'use strict';
window.addEventListener('load', function() {
// Fetch all the forms we want to apply custom Bootstrap validation styles to
var forms = document.getElementsByClassName('needs-validation');
// Loop over them and prevent submission
var validation = Array.prototype.filter.call(forms, function(form) {
form.addEventListener('submit', function(event) {
if (form.checkValidity() === false) {
event.preventDefault();
event.stopPropagation();
}
form.classList.add('was-validated');
}, false);
});
}, false);
})();
var btns = document.querySelector('.home')
btns.addEventListener('click', function() {
alert('Thank for your order !');
}, false);
$(document).ready(function() {
$('#delete').on('show.bs.modal', function(event) {
var button = $(event.relatedTarget)
var item = button.data('title')
var modal = $(this)
modal.find('.modal-title').text(item)
})
$(function() {
$('#allList').tab('show')
})
$(function() {
$('#card').tab('show')
})
$('.icons').click(function() {
$(this).toggleClass('iconck').siblings().removeClass('iconck')
})
$('#turnbf').click(function() {
$('#turnbf span').addClass('turn')
})
$('.turnaf').click(function() {
$('.turnaf span').toggleClass('turnb')
})
});
</script>
<script src="https://cdn.jsdelivr.net/npm/popper.js@1.16.0/dist/umd/popper.min.js " integrity="sha384-Q6E9RHvbIyZFJoft+2mJbHaEWldlvI9IOYy5n3zV9zzTtmI3UksdQRVvoxMfooAo " crossorigin="anonymous "></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/js/bootstrap.min.js " integrity="sha384-wfSDF2E50Y2D1uUdj0O3uMBJnjuUD4Ih7YwaYd1iqfktj0Uod8GCExl3Og8ifwB6 " crossorigin="anonymous "></script>
</body>
</html>
Also see: Tab Triggers