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