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