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