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