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