Page 200 - Computer Software Application TP - Volume 1
P. 200
COMPUTER SOFTWARE APPLICATION - CITS
• Save the program as a .html file
• Open the html file with a web browser
• Verify the output.
3 Animated Progress Bar
• Open the text editor
• Write the following codes
<html lang=”en”>
<head>
<title>Bootstrap Example</title>
<meta charset=”utf-8”>
<meta name=”viewport” content=”width=device-width, initial-scale=1”>
<link href=https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css rel=”stylesheet”>
<script src=”https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/js/bootstrap.bundle.min.js”></script>
</head>
<body>
<br/>
<div class=”progress”>
<div class=”progress-bar progress-bar-striped” style=”width:40%”></div>
</div>
</body>
</html>
• Save the program as a .html file
• Open the html file with a web browser
• Verify the output.
185
CITS : IT & ITES - Computer Software Application - Exercise 47