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