Closed SPCcleveland9035 closed 3 years ago
The icons depend on static font assets for display:
You have to save the fonts to a font
directory alongside the style-sheets, like this:
├── css
│ ├── weather-icons.min.css
│ └── weather-icons-wind.min.css
├── font
│ ├── weathericons-regular-webfont.eot
│ ├── weathericons-regular-webfont.svg
│ ├── weathericons-regular-webfont.ttf
│ ├── weathericons-regular-webfont.woff
│ └── weathericons-regular-webfont.woff2
└── index.html
<!-- index.html -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>Weather Icons Demo</title>
<link rel="stylesheet" type="text/css" href="css/weather-icons.min.css"/>
<link rel="stylesheet" type="text/css" href="css/weather-icons-wind.min.css"/>
</head>
<body>
<table border="1"></table>
<h1>Weather Icons</h1>
<i class="wi wi-night-sleet"></i>
</body>
</html>
Oh, that makes more sense, thank you.
I cant get the icons to show up, and I think I might be doing it wrong. Please help me out. My contact info: Email: thegoon8511@gmail.cpm | Discord: SPCcleveland9035#6522. Have a great day!