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