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