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