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