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