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