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