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