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