mirror of
https://github.com/kevinsqi/react-circular-progressbar.git
synced 2026-01-18 15:55:06 +00:00
28 lines
687 B
HTML
28 lines
687 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
|
<meta http-equiv="x-ua-compatible" content="ie=edge">
|
|
|
|
<title>react-circular-progressbar</title>
|
|
|
|
<link rel="stylesheet" href="https://cdn.rawgit.com/twbs/bootstrap/v4-dev/dist/css/bootstrap.css" />
|
|
<link rel="stylesheet" href="styles.css" />
|
|
|
|
<style>
|
|
/* bootstrap overrides */
|
|
a {
|
|
color: #3e98c7;
|
|
}
|
|
a:hover {
|
|
text-decoration: none;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div id="demo"></div>
|
|
<script src="index.js" type="text/javascript"></script>
|
|
</body>
|
|
</html>
|