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