index.html 546 Bytes
Newer Older
Cole Bemis's avatar
Cole Bemis committed
1 2 3 4 5
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>Feather</title>
6
  <!--
Cole Bemis's avatar
Cole Bemis committed
7 8 9
    To build feather.min.js run
    $ npm run build
    in the root directory, or use the already built package available on unpkg.com.
10
  -->
Cole Bemis's avatar
Cole Bemis committed
11
  <script src="../dist/feather.min.js"></script>
12
  <!-- <script src="https://unpkg.com/feather-icons/dist/feather.min.js"></script> -->
Cole Bemis's avatar
Cole Bemis committed
13 14 15 16 17 18 19 20 21 22 23
</head>
<body>

  <i data-feather="eye"></i>
  <i data-feather="heart"></i>
  <i data-feather="feather"></i>

  <script>
    feather.replace()
  </script>
</body>
24
</html>