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