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