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