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