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