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