Bootstrap progress bar

A simple example of Bootstrap progress bar.
<!DOCTYPE html>
<html>
<head>
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0">
    <meta name="description" content="Bootstrap example for Tizen"/>
    
    <title>Bootstrap example for Tizen</title>
    
 <link rel="stylesheet" href="css/bootstrap.min.css">
  <script src="js/jquery-2.1.4.min.js"></script>
  <script src="js/bootstrap.min.js"></script>
</head>
<body>

This is a Bootstrap progress bar
<div class="progress">
  <div class="progress-bar" role="progressbar" aria-valuenow="35"
  aria-valuemin="0" aria-valuemax="100" style="width:35%">
  </div>
</div>

<script>
</script>

</body>
</html>

Responses

0 Replies