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