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