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