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