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