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