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