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