The /css/element.css file contains the core styling plus all of the icon styles that you’ll need when using Hydrogen Element Icons. The /fonts folder contains all of the typeface files that the above CSS references and depends on.
Copy the entire /fonts folder and the /css/element.min.css into your project’s static assets directory.
Add a reference to the copied /css/element.min.css file into the
of each page that you want to use Element on.
<head>
<link href="/your-path-to-element/css/element.min.css" rel="stylesheet"> <!--load styles -->
</head>
<body>
<span class="icon-home"></span> <!-- home icon-->
<span class="icon-money"></span> <!-- money icon-->
</body>