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