progress bar style : demo 32

HTML

65%

CSS3

50%

java script

80%

HTML

                        

HTML

65%

CSS3

50%

CSS

                        .progressbar-title{
                            font-size: 14px;
                            color: #848484;
                            text-transform: capitalize;
                        }
                        .progress{
                            height: 5px;
                            overflow: visible;
                            background: #f0f0f0;
                            margin-bottom: 40px;
                        }
                        .progress .progress-bar{
                            position: relative;
                            animation: animate-positive 2s;
                        }
                        .progress .progress-icon{
                            width: 30px;
                            height: 30px;
                            line-height: 25px;
                            border-radius: 50%;
                            font-size: 13px;
                            position: absolute;
                            top: -14px;
                            right: 0;
                            background: #fff;
                            border-width: 3px;
                            border-style: solid;
                        }
                        .progress-value{
                            font-size: 13px;
                            color: #848484;
                            position: absolute;
                            top: 16px;
                            right: 0;
                        }
                        @-webkit-keyframes animate-positive {
                            0% { width: 0%; }
                        }
                        @keyframes animate-positive {
                            0% { width: 0%; }
                        }
                    
License Terms