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