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