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