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