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