Use on the webTotal Use [ 3244 ] times
1Add to the head section of web page.
<link href="https://db.onlinewebfonts.com/c/e72faf18481d5e27bc60c65492a2e55f?family=Perennial" rel="stylesheet">
orUsing @import CSS directive, put the following line in add to your css file.(http | https)
@import url(https://db.onlinewebfonts.com/c/e72faf18481d5e27bc60c65492a2e55f?family=Perennial);
orUse font-face declaration Fonts.(http | https)
@font-face {
font-family: "Perennial";
src: url("https://db.onlinewebfonts.com/t/e72faf18481d5e27bc60c65492a2e55f.eot");
src: url("https://db.onlinewebfonts.com/t/e72faf18481d5e27bc60c65492a2e55f.eot?#iefix")format("embedded-opentype"),
url("https://db.onlinewebfonts.com/t/e72faf18481d5e27bc60c65492a2e55f.woff2")format("woff2"),
url("https://db.onlinewebfonts.com/t/e72faf18481d5e27bc60c65492a2e55f.woff")format("woff"),
url("https://db.onlinewebfonts.com/t/e72faf18481d5e27bc60c65492a2e55f.ttf")format("truetype"),
url("https://db.onlinewebfonts.com/t/e72faf18481d5e27bc60c65492a2e55f.svg#Perennial")format("svg");
}
2CSS rules to specify fonts
font-family: "Perennial";