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