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