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