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