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