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