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