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