"Simple Progressbar"
Bootstrap 4.0.0 Snippet by Notlimitedg

<link href="//maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css"> <script src="//maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js"></script> <script src="//code.jquery.com/jquery-1.11.1.min.js"></script> <!------ Include the above in your HEAD tag ----------> <div class="container"> <div class="row"> <div class="col-md-12"> <h3 class="progress-title">HTML5</h3> <div class="progress"> <div class="progress-bar" style="width:70%; background:#97c513;"> <div class="progress-value">70%</div> </div> </div> <h3 class="progress-title">CSS3</h3> <div class="progress"> <div class="progress-bar" style="width:100%; background:#f2545b;"> <div class="progress-value">100%</div> </div> </div> <h3 class="progress-title">PHOTOSHOP</h3> <div class="progress"> <div class="progress-bar" style="width:80%; background:#4286f4;"> <div class="progress-value">80%</div> </div> </div> <h3 class="progress-title">JS</h3> <div class="progress"> <div class="progress-bar" style="width:90%; background:#21ff63;"> <div class="progress-value">90%</div> </div> </div> </div> </div> </div>
.progress-title{ font-size: 16px; font-weight: 700; color: #333; margin: 0 0 20px; } .progress{ height: 20px; background: #333; border-radius: 0; box-shadow: none; margin-bottom: 30px; overflow: visible; } .progress .progress-bar{ position: relative; -webkit-animation: animate-positive 2s; animation: animate-positive 2s; } .progress .progress-value{ display: block; font-size: 18px; font-weight: 500; color: #000; position: absolute; top: -30px; right: -25px; } .progress .progress-bar:after{ content: ""; display: inline-block; width: 10px; background: #fff; position: absolute; top: -10px; bottom: -10px; right: -5px; z-index: 1; transform: rotate(35deg); }

Related: See More


Questions / Comments: