mirror of
https://github.com/jquery/jquery-ui.git
synced 2024-11-21 11:04:24 +00:00
18 lines
616 B
HTML
18 lines
616 B
HTML
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<title>jQuery UI Progressbar Static Markup Test Page</title>
|
|
<link rel="stylesheet" href="../../themes/base/ui.all.css" type="text/css">
|
|
</head>
|
|
<body>
|
|
|
|
<h1>jQuery UI Progressbar Static Markup Test Page</h1>
|
|
|
|
<div class="ui-progressbar ui-widget ui-widget-content ui-corner-all" role="progressbar" aria-valuemin="0" aria-valuemax="100" aria-valuenow="13">
|
|
<div class="ui-progressbar-label">13% Completed</div>
|
|
<div class="ui-progressbar-value ui-state-default ui-corner-left" style="width: 13%;"><span class="ui-progressbar-label">13% Completed</span></div>
|
|
</div>
|
|
|
|
</body>
|
|
</html>
|