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