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