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