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