feather/examples/index.html

25 lines
546 B
HTML
Raw Normal View History

2017-07-04 01:10:58 +03:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Feather</title>
<!--
2017-11-09 23:42:32 +03:00
To build feather.min.js run
$ npm run build
in the root directory, or use the already built package available on unpkg.com.
-->
2017-07-04 01:10:58 +03:00
<script src="../dist/feather.min.js"></script>
<!-- <script src="https://unpkg.com/feather-icons/dist/feather.min.js"></script> -->
2017-07-04 01:10:58 +03:00
</head>
<body>
<i data-feather="eye"></i>
<i data-feather="heart"></i>
<i data-feather="feather"></i>
<script>
feather.replace()
</script>
</body>
</html>