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