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