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