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