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