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