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