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