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