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