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