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