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