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