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