Feather icons is a large open-source collection of SVG icons to use on the web. Usage is easy and requires just one file request.
By default, there are no size classes for the icons however implementing one is easy to do.
To use Feather icons include the following:
<script src="https://unpkg.com/feather-icons"></script> <script> feather.replace(); </script>
Feather icon elements with the sizing classes:
<i class="icon-sml" data-feather="wifi"></i> <i class="icon-med" data-feather="wifi"></i> <i class="icon-lrg" data-feather="wifi"></i>
The CSS classes:
.icon-sml {
width: 15px;
height: 15px;
}
.icon-med {
width: 25px;
height: 25px;
}
.icon-lrg {
width: 35px;
height: 35px;
} All this does is define a width and height value in pixels, any of the CSS units will work.
You can also colour the icons by adding a color parameter to the CSS class:
color: #0d6efd;
A drained and empty Kennington reservoir images from a drone in early July 2024. The…
Merrimu Reservoir from drone. Click images to view larger.
Using FTP and PHP to get an array of file details such as size and…
Creating and using Laravel form requests to create cleaner code, separation and reusability for your…
Improving the default Laravel login and register views in such a simple manner but making…
Laravel validation for checking if a field value exists in the database. The validation rule…