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