Use on the webTotal Use [ 5793 ] times
1Add to the head section of web page.
<link href="https://db.onlinewebfonts.com/c/f670db85b9554ed61d7427e8a029a61b?family=Izolation+V1" 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/f670db85b9554ed61d7427e8a029a61b?family=Izolation+V1);
orUse font-face declaration Fonts.(http | https)
@font-face {
font-family: "Izolation V1";
src: url("https://db.onlinewebfonts.com/t/f670db85b9554ed61d7427e8a029a61b.eot");
src: url("https://db.onlinewebfonts.com/t/f670db85b9554ed61d7427e8a029a61b.eot?#iefix")format("embedded-opentype"),
url("https://db.onlinewebfonts.com/t/f670db85b9554ed61d7427e8a029a61b.woff2")format("woff2"),
url("https://db.onlinewebfonts.com/t/f670db85b9554ed61d7427e8a029a61b.woff")format("woff"),
url("https://db.onlinewebfonts.com/t/f670db85b9554ed61d7427e8a029a61b.ttf")format("truetype"),
url("https://db.onlinewebfonts.com/t/f670db85b9554ed61d7427e8a029a61b.svg#Izolation V1")format("svg");
}
2CSS rules to specify fonts
font-family: "Izolation V1";