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