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