progress bar style : demo 48

HTML5

85%

CSS3

60%

J-Query

90%

Bootstrap

75%

HTML

                        

HTML5

85%

CSS3

60%

CSS

                        .progress-title{
                            font-size: 16px;
                            font-weight: 700;
                            color: #000;
                            margin: 15px 0 20px;
                        }
                        .progress{
                            height: 5px;
                            background: #f0f0f0;
                            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-bar:after{
                            content: "\f0dd";
                            font-family: "Font Awesome 5 Free";
                            font-weight: 900;
                            font-size: 20px;
                            position: absolute;
                            top: -18px;
                            right: -5px;
                        }
                        .progress .progress-value{
                            position: absolute;
                            top: -30px;
                            right: 8px;
                            font-size: 17px;
                            font-weight: bold;
                            font-style: italic;
                            color: #000;
                        }
                        @-webkit-keyframes animate-positive{
                            0% { width: 0%; }
                        }
                        @keyframes animate-positive{
                            0% { width: 0%; }
                        }
                    
License Terms