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