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