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