mirror of
https://github.com/feathericons/feather.git
synced 2023-08-10 21:13:24 +03:00
25 lines
546 B
HTML
25 lines
546 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Feather</title>
|
|
<!--
|
|
To build feather.min.js run
|
|
$ npm run build
|
|
in the root directory, or use the already built package available on unpkg.com.
|
|
-->
|
|
<script src="../dist/feather.min.js"></script>
|
|
<!-- <script src="https://unpkg.com/feather-icons/dist/feather.min.js"></script> -->
|
|
</head>
|
|
<body>
|
|
|
|
<i data-feather="eye"></i>
|
|
<i data-feather="heart"></i>
|
|
<i data-feather="feather"></i>
|
|
|
|
<script>
|
|
feather.replace()
|
|
</script>
|
|
</body>
|
|
</html>
|